diff --git a/lib/stripe-force/translate/coupon.rb b/lib/stripe-force/translate/coupon.rb index 15e52eb742..6dcf4dcd80 100644 --- a/lib/stripe-force/translate/coupon.rb +++ b/lib/stripe-force/translate/coupon.rb @@ -113,12 +113,18 @@ def get_salesforce_stripe_coupons_associated_to_sf_object(sf_client:, sf_object: lookup_field = 'Order_Item__c' else # this should never happen since coupons can only be tied to an order or order item - raise Integrations::Errors::ImpossibleState.new("unsupported sf object type for coupons: #{source_sf_record_type}") + raise Integrations::Errors::ImpossibleState.new("Unsupported sf object type for coupons: #{source_sf_record_type}") end # check if there are any coupon associations to this order or order item coupon_data = backoff { sf_client.query("Select #{SF_ID} from #{prefixed_stripe_field(ORDER_SF_STRIPE_COUPON)} where #{prefixed_stripe_field(lookup_field)} = '#{sf_object.Id}'") } + associations = get_quote_associations_for_sf_object(sf_client: sf_client, sf_object: sf_object) + if associations.size != coupon_data.size + log.info 'found a different number of coupons associations for sf object', salesforce_object: sf_object, sf_association_count: associations.size, sf_order_coupon_count: coupon_data.size + raise Integrations::Errors::ImpossibleInternalError.new("The sf object has a different number of quote / quote line associations than Order coupons.") + end + # there could be multiple coupons associated with a single order or order line coupons = coupon_data.map do |data| backoff { sf_client.find(prefixed_stripe_field(ORDER_SF_STRIPE_COUPON), data.Id) } @@ -127,4 +133,25 @@ def get_salesforce_stripe_coupons_associated_to_sf_object(sf_client:, sf_object: coupons end end + + def get_quote_associations_for_sf_object(sf_client:, sf_object:) + source_sf_record_type = sf_object.sobject_type + if source_sf_record_type == SF_ORDER + lookup_field = 'Quote__c' + lookup_object = QUOTE_SF_STRIPE_COUPON_ASSOCIATION + lookup_field_id = sf_object[CPQ_QUOTE] + elsif source_sf_record_type == SF_ORDER_ITEM + lookup_field = 'Quote_Line__c' + lookup_object = QUOTE_LINE_SF_STRIPE_COUPON_ASSOCIATION + lookup_field_id = sf_object[CPQ_QUOTE_LINE] + else + # this should never happen since coupons can only be tied to an order or order item + raise Integrations::Errors::ImpossibleState.new("Unsupported sf object type for coupons: #{source_sf_record_type}") + end + + # check if there are any coupon associations to this order or order item + qla_data = backoff { sf_client.query("Select #{SF_ID} from #{prefixed_stripe_field(lookup_object)} where #{prefixed_stripe_field(lookup_field)} = '#{lookup_field_id}'") } + + qla_data + end end diff --git a/test/integration/translate/test_coupon.rb b/test/integration/translate/test_coupon.rb index 56d4944626..860d535212 100644 --- a/test/integration/translate/test_coupon.rb +++ b/test/integration/translate/test_coupon.rb @@ -30,7 +30,7 @@ class Critic::CouponTranslation < Critic::VCRTest sf_product_id, _sf_pricebook_id = salesforce_recurring_product_with_price # create a CPQ quote - sf_quote_id = create_salesforce_quote(sf_account_id: sf_account_id, contact_email: "order_and_order_line_when_quote_ordered", additional_quote_fields: { + sf_quote_id = create_salesforce_quote(sf_account_id: sf_account_id, contact_email: "order_and_order_line_when_quote_ordered_1", additional_quote_fields: { CPQ_QUOTE_SUBSCRIPTION_START_DATE => now_time_formatted_for_salesforce, CPQ_QUOTE_SUBSCRIPTION_TERM => TEST_DEFAULT_CONTRACT_TERM, }) diff --git a/test/vcr_cassettes/integration/amendments/test_amendments/phase_coupons_are_not_copied_over_to_new_phase_on_amendment_orders.yml b/test/vcr_cassettes/integration/amendments/test_amendments/phase_coupons_are_not_copied_over_to_new_phase_on_amendment_orders.yml index 57d3ffa1d5..9883885dd0 100644 --- a/test/vcr_cassettes/integration/amendments/test_amendments/phase_coupons_are_not_copied_over_to_new_phase_on_amendment_orders.yml +++ b/test/vcr_cassettes/integration/amendments/test_amendments/phase_coupons_are_not_copied_over_to_new_phase_on_amendment_orders.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/Account + uri: https://connect-saas-89822-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-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:15 GMT + - Thu, 09 Nov 2023 20:07:31 GMT Set-Cookie: - - BrowserId=xTZphjF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:15 + - BrowserId=nWQFlX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13500/5000000 + - api-usage=586/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBrEAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iaMT1AAM","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0016s00000fzBrEAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:31 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-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-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:16 GMT + - Thu, 09 Nov 2023 20:07:31 GMT Set-Cookie: - - BrowserId=xaDETzF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:16 + - BrowserId=nZbV0X87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13502/5000000 + - api-usage=584/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qtAAA" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009As7WAAS","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"01t6s000004g3qtAAA","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:32 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:16 GMT + - Thu, 09 Nov 2023 20:07:32 GMT Set-Cookie: - - BrowserId=xg1BoTF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:16 + - BrowserId=nezlHH87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13499/5000000 + - api-usage=576/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:32 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7WAAS","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qtAAA","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:17 GMT + - Thu, 09 Nov 2023 20:07:32 GMT Set-Cookie: - - BrowserId=xkNF3TF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:17 + - BrowserId=nfzDMX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13501/5000000 + - api-usage=587/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjEAAR" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRfAAK" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000IsjjEAAR","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"01u6s000006MyRfAAK","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:32 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:17 GMT + - Thu, 09 Nov 2023 20:07:32 GMT Set-Cookie: - - BrowserId=xoSUvDF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:17 + - BrowserId=nhEPF387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13513/5000000 + - api-usage=586/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:32 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-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":"0017e00001iaMT1AAM"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBrEAAU"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:18 GMT + - Thu, 09 Nov 2023 20:07:32 GMT Set-Cookie: - - BrowserId=xs69HzF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:18 + - BrowserId=nh9ABH87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13502/5000000 + - api-usage=576/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NfEXEAA3" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE30AAF" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NfEXEAA3","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0066s00000CfE30AAF","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:33 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"phase_coupon_no_copy@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:18 GMT + - Thu, 09 Nov 2023 20:07:33 GMT Set-Cookie: - - BrowserId=xyNs_zF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:18 + - BrowserId=nlmJpn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13503/5000000 + - api-usage=577/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jI87ZAAS" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY9BqAAL" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jI87ZAAS","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0036s00000WY9BqAAL","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:33 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://connect-saas-89822-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":"0067e00000NfEXEAA3","SBQQ__PrimaryContact__c":"0037e00001jI87ZAAS","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE30AAF","SBQQ__PrimaryContact__c":"0036s00000WY9BqAAL","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:19 GMT + - Thu, 09 Nov 2023 20:07:33 GMT Set-Cookie: - - BrowserId=x3ICQjF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:19 + - BrowserId=npkDPX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13504/5000000 + - api-usage=588/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDKaiAAH","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a0z6s0000016DwgAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:34 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:20 GMT + - Thu, 09 Nov 2023 20:07:34 GMT Set-Cookie: - - BrowserId=yEkBLzF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:20 + - BrowserId=nuaHyH87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13501/5000000 + - api-usage=579/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:34 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDKaiAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DwgAAE body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:21 GMT + - Thu, 09 Nov 2023 20:07:34 GMT Set-Cookie: - - BrowserId=yIzoNzF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:21 + - BrowserId=nvY_On87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"Id\":\"a0z7e00000BDKaiAAH\",\"Name\":\"Q-01220\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"Id\":\"a0z6s0000016DwgAAE\",\"Name\":\"Q-00205\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/0067e00000NfEXEAA3\"},\"Id\":\"0067e00000NfEXEAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":\"0066s00000CfE30AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"Id\":\"0066s00000CfE30AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:34 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009As7WAAS + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qtAAA body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:22 GMT + - Thu, 09 Nov 2023 20:07:34 GMT Set-Cookie: - - BrowserId=ySw0xDF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:22 + - BrowserId=n1MFMn87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000IsjjEAAR\"},\"Product2Id\":\"01t7e000009As7WAAS\",\"Id\":\"01u7e00000IsjjEAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRfAAK\"},\"Product2Id\":\"01t6s000004g3qtAAA\",\"Id\":\"01u6s000006MyRfAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 20:07:35 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://connect-saas-89822-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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"Id\":\"a0z7e00000BDKaiAAH\",\"Name\":\"Q-01220\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"Id\":\"a0z6s0000016DwgAAE\",\"Name\":\"Q-00205\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/0067e00000NfEXEAA3\"},\"Id\":\"0067e00000NfEXEAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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\":\"0066s00000CfE30AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"Id\":\"0066s00000CfE30AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000IsjjEAAR\"},\"Product2Id\":\"01t7e000009As7WAAS\",\"Id\":\"01u7e00000IsjjEAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRfAAK\"},\"Product2Id\":\"01t6s000004g3qtAAA\",\"Id\":\"01u6s000006MyRfAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:22 GMT + - Thu, 09 Nov 2023 20:07:35 GMT Set-Cookie: - - BrowserId=ya9ukTF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:22 + - BrowserId=n7YzlH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,28 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"Id\":\"a0z7e00000BDKaiAAH\",\"Name\":\"Q-01220\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"Id\":\"a0z6s0000016DwgAAE\",\"Name\":\"Q-00205\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/0067e00000NfEXEAA3\"},\"Id\":\"0067e00000NfEXEAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaiAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjEAAR\",\"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-0002629\",\"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/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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\":\"0066s00000CfE30AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"Id\":\"0066s00000CfE30AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwgAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRfAAK\",\"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-0001701\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:37 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://connect-saas-89822-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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"Id\":\"a0z7e00000BDKaiAAH\",\"Name\":\"Q-01220\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"Id\":\"a0z6s0000016DwgAAE\",\"Name\":\"Q-00205\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/0067e00000NfEXEAA3\"},\"Id\":\"0067e00000NfEXEAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaiAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjEAAR\",\"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-0002629\",\"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/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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\":\"0066s00000CfE30AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"Id\":\"0066s00000CfE30AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwgAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRfAAK\",\"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-0001701\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -669,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:25 GMT + - Thu, 09 Nov 2023 20:07:37 GMT Set-Cookie: - - BrowserId=yxhNlDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:25 + - BrowserId=oNq2jn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -692,28 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"Id\":\"a0z7e00000BDKaiAAH\",\"Name\":\"Q-01220\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"Id\":\"a0z6s0000016DwgAAE\",\"Name\":\"Q-00205\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/0067e00000NfEXEAA3\"},\"Id\":\"0067e00000NfEXEAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaiAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjEAAR\",\"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-0002630\",\"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/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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\":\"0066s00000CfE30AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"Id\":\"0066s00000CfE30AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwgAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRfAAK\",\"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-0001702\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:38 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"Id\":\"a0z7e00000BDKaiAAH\",\"Name\":\"Q-01220\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"Id\":\"a0z6s0000016DwgAAE\",\"Name\":\"Q-00205\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/0067e00000NfEXEAA3\"},\"Id\":\"0067e00000NfEXEAA3\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKaiAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjjEAAR\",\"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-0002630\",\"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/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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\":\"0066s00000CfE30AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"Id\":\"0066s00000CfE30AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwgAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRfAAK\",\"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-0001702\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:27 GMT + - Thu, 09 Nov 2023 20:07:38 GMT Set-Cookie: - - BrowserId=zCN8FDF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:27 + - BrowserId=oZ4F_H87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,18 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH\"},\"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/0067e00000NfEXEAA3\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKaiAAH\",\"AccountId\":\"0017e00001iaMT1AAM\",\"Id\":\"0067e00000NfEXEAA3\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMT1AAM\",\"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-01220\",\"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\":\"0017e00001iaMT1AAM\",\"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\":\"0067e00000NfEXEAA3\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDKaiAAH\",\"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\":\"a0z7e00000BDKaiAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXorAAE\"},\"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\":\"a0z7e00000BDKaiAAH\",\"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\":\"a0v7e000008xXorAAE\",\"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-0002630\",\"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\":\"01u7e00000IsjjEAAR\",\"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/01t7e000009As7WAAS\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7WAAS\",\"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\":\"01t7e000009As7WAAS\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE30AAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwgAAE\",\"AccountId\":\"0016s00000fzBrEAAU\",\"Id\":\"0066s00000CfE30AAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBrEAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00205\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE30AAF\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DwgAAE\",\"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\":\"a0z6s0000016DwgAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA\"},\"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-11-09 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\":\"a0z6s0000016DwgAAE\",\"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\":\"a0v6s000000tledAAA\",\"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-0001702\",\"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\":\"01u6s000006MyRfAAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qtAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:39 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -786,12 +786,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:28 GMT + - Thu, 09 Nov 2023 20:07:39 GMT Set-Cookie: - - BrowserId=zMR3dDF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:28 + - BrowserId=of-Hn387Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -804,11 +804,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13523/5000000 + - api-usage=586/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -925,7 +925,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -936,14 +936,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1111,7 +1109,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 @@ -1127,7 +1126,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1145,9 +1146,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1291,9 +1291,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1415,9 +1415,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 @@ -1469,7 +1478,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 @@ -1904,7 +1913,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -2084,7 +2098,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2109,7 +2123,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2165,10 +2190,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: Thu, 09 Nov 2023 20:07:39 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE body: encoding: US-ASCII string: '' @@ -2187,12 +2212,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:29 GMT + - Thu, 09 Nov 2023 20:07:39 GMT Set-Cookie: - - BrowserId=zXGnmDF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:29 + - BrowserId=okYFhX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2205,9 +2230,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13524/5000000 + - api-usage=579/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:27 GMT + - Thu, 09 Nov 2023 20:07:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2216,15 +2241,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH"},"Id":"a0z7e00000BDKaiAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01220","CreatedDate":"2023-08-02T21:30:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:27.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-02T21:30:27.000+0000","LastReferencedDate":"2023-08-02T21:30:27.000+0000","SBQQ__Account__c":"0017e00001iaMT1AAM","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:30:27.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":null,"SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"0067e00000NfEXEAA3","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jI87ZAAS","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/a0z6s0000016DwgAAE"},"Id":"a0z6s0000016DwgAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00205","CreatedDate":"2023-11-09T20:07:33.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:39.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:39.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T20:07:38.000+0000","LastReferencedDate":"2023-11-09T20:07:38.000+0000","SBQQ__Account__c":"0016s00000fzBrEAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T20:07:39.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":"0066s00000CfE30AAF","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY9BqAAL","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 20:07:39 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDKaiAAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DwgAAE%27 body: encoding: US-ASCII string: '' @@ -2243,12 +2268,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:29 GMT + - Thu, 09 Nov 2023 20:07:39 GMT Set-Cookie: - - BrowserId=zbLOUjF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:29 + - BrowserId=olncDn87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2261,7 +2286,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13525/5000000 + - api-usage=588/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2270,11 +2295,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXorAAE"},"Id":"a0v7e000008xXorAAE"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA"},"Id":"a0v6s000000tledAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:39 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXorAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA body: encoding: US-ASCII string: '' @@ -2293,12 +2318,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:30 GMT + - Thu, 09 Nov 2023 20:07:39 GMT Set-Cookie: - - BrowserId=zfVWaDF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:30 + - BrowserId=omlsdH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2311,9 +2336,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13522/5000000 + - api-usage=589/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:27 GMT + - Thu, 09 Nov 2023 20:07:38 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2322,14 +2347,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXorAAE"},"Id":"a0v7e000008xXorAAE","IsDeleted":false,"Name":"QL-0002631","CreatedDate":"2023-08-02T21:30:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:27.000+0000","SBQQ__Quote__c":"a0z7e00000BDKaiAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IsjjEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-02","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA"},"Id":"a0v6s000000tledAAA","IsDeleted":false,"Name":"QL-0001703","CreatedDate":"2023-11-09T20:07:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:38.000+0000","SBQQ__Quote__c":"a0z6s0000016DwgAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRfAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 20:07:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"25% off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' @@ -2350,12 +2375,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:30 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Set-Cookie: - - BrowserId=zkneYzF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:30 + - BrowserId=ooa4_X87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2368,9 +2393,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13515/5000000 + - api-usage=576/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFuwEAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ6EAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2379,11 +2404,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JFuwEAG","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1R6s000000uvJ6EAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$10 off coupon","Amount_Off__c":10,"Duration__c":"once"}' @@ -2404,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:31 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Set-Cookie: - - BrowserId=zpR8AzF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:31 + - BrowserId=orh2rH87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2422,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13516/5000000 + - api-usage=577/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv1EAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJBEAY" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2433,14 +2458,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JFv1EAG","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1R6s000000uvJBEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xXorAAE","Quote_Stripe_Coupon__c":"a1R7e000007JFuwEAG"}' + string: '{"Quote_Line__c":"a0v6s000000tledAAA","Quote_Stripe_Coupon__c":"a1R6s000000uvJ6EAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2458,12 +2483,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:31 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Set-Cookie: - - BrowserId=ztiJ3TF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:31 + - BrowserId=osvXzH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2476,9 +2501,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13526/5000000 + - api-usage=590/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TWgXEAW" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk7iEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2487,14 +2512,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TWgXEAW","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1P6s000001Bk7iEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:40 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote__c":"a0z7e00000BDKaiAAH","Quote_Stripe_Coupon__c":"a1R7e000007JFv1EAG"}' + string: '{"Quote__c":"a0z6s0000016DwgAAE","Quote_Stripe_Coupon__c":"a1R6s000000uvJBEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -2512,12 +2537,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:32 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Set-Cookie: - - BrowserId=zyuLszF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:32 + - BrowserId=ot9fYX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2530,9 +2555,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13523/5000000 + - api-usage=580/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q7e000007DwBKEA0" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKNIEA4" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2541,11 +2566,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1Q7e000007DwBKEA0","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1Q6s000001FKNIEA4","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:07:40 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2566,12 +2591,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:32 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Set-Cookie: - - BrowserId=z3iaqjF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:32 + - BrowserId=ovJye387Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2586,14 +2611,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13526/5000000 + - api-usage=590/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2612,12 +2637,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:34 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Set-Cookie: - - BrowserId=0I5QozF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:34 + - BrowserId=o8oNkn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2630,7 +2655,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13527/5000000 + - api-usage=596/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2639,13 +2664,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEXEAA3","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":"00001303","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:30:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:30:34.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":"a0z7e00000BDKaiAAH","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/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE30AAF","EffectiveDate":"2023-11-09","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":"00000276","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:07:41.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:07:42.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":"a0z6s0000016DwgAAE","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: Thu, 09 Nov 2023 20:07:42 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2666,12 +2690,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:34 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Set-Cookie: - - BrowserId=0NTPjzF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:34 + - BrowserId=o9iM0n87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2686,14 +2710,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13517/5000000 + - api-usage=606/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: US-ASCII string: '' @@ -2712,12 +2736,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:35 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Set-Cookie: - - BrowserId=0XXKpTF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:35 + - BrowserId=pCmSvX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2730,9 +2754,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13528/5000000 + - api-usage=597/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:35 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2741,13 +2765,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEXEAA3","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:30:35.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001303","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:30:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:30:35.000+0000","LastViewedDate":"2023-08-02T21:30:34.000+0000","LastReferencedDate":"2023-08-02T21:30: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":"a0z7e00000BDKaiAAH","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: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE30AAF","EffectiveDate":"2023-11-09","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-11-09T20:07:42.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000276","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:07:41.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:07:42.000+0000","LastViewedDate":"2023-11-09T20:07:42.000+0000","LastReferencedDate":"2023-11-09T20:07:42.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":"a0z6s0000016DwgAAE","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: Thu, 09 Nov 2023 20:07:42 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: US-ASCII string: '' @@ -2766,12 +2789,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:36 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Set-Cookie: - - BrowserId=0e1ESjF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:36 + - BrowserId=pDecf387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2784,9 +2807,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13522/5000000 + - api-usage=598/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:35 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2795,16 +2818,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEXEAA3","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:30:35.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001303","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:30:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:30:35.000+0000","LastViewedDate":"2023-08-02T21:30:36.000+0000","LastReferencedDate":"2023-08-02T21:30:36.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE30AAF","EffectiveDate":"2023-11-09","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-11-09T20:07:42.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000276","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:07:41.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:07:42.000+0000","LastViewedDate":"2023-11-09T20:07:42.000+0000","LastReferencedDate":"2023-11-09T20:07:42.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":"a0z7e00000BDKaiAAH","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":"a0z6s0000016DwgAAE","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: Thu, 09 Nov 2023 20:07:43 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR7lAAE"]}' + string: '{"order_ids":["8016s000001FXydAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2822,12 +2845,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:37 GMT + - Thu, 09 Nov 2023 20:07:43 GMT Set-Cookie: - - BrowserId=0ik8CTF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:37 + - BrowserId=pES74X87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2847,27 +2870,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jI87ZAAS"},"Id":"0037e00001jI87ZAAS","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"phase_coupon_no_copy@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:18.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:18.000+0000","LastViewedDate":"2023-08-02T21:30:18.000+0000","LastReferencedDate":"2023-08-02T21:30:18.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jI87ZAAS","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEXEAA3"},"Id":"0067e00000NfEXEAA3","IsDeleted":false,"AccountId":"0017e00001iaMT1AAM","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:30:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:19.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:30:18.000+0000","LastReferencedDate":"2023-08-02T21:30:18.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKaiAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM"},"Id":"0017e00001iaMT1AAM","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:15.000+0000","LastViewedDate":"2023-08-02T21:30:15.000+0000","LastReferencedDate":"2023-08-02T21:30:15.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":["0017e00001iaMT1AAM"],"Opportunities":["0067e00000NfEXEAA3"],"Contacts":["0037e00001jI87ZAAS"],"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":true,"SBQQ__Type__c":"Quote","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__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jI87ZAAS","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":"0067e00000NfEXEAA3","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:30:32.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY9BqAAL"},"Id":"0036s00000WY9BqAAL","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"phase_coupon_no_copy@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:33.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:33.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:33.000+0000","LastViewedDate":"2023-11-09T20:07:33.000+0000","LastReferencedDate":"2023-11-09T20:07:33.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY9BqAAL","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF"},"Id":"0066s00000CfE30AAF","IsDeleted":false,"AccountId":"0016s00000fzBrEAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:33.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:33.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:07:32.000+0000","LastReferencedDate":"2023-11-09T20:07:32.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwgAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU"},"Id":"0016s00000fzBrEAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:31.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:31.000+0000","LastViewedDate":"2023-11-09T20:07:31.000+0000","LastReferencedDate":"2023-11-09T20:07:31.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":["0016s00000fzBrEAAU"],"Opportunities":["0066s00000CfE30AAF"],"Contacts":["0036s00000WY9BqAAL"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY9BqAAL","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE30AAF","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T20:07:40.000+0000","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":"0017e00001iaMT1AAM","LastReferencedDate":"2023-08-02T21:30:32.000+0000","LastViewedDate":"2023-08-02T21:30:32.000+0000","SystemModstamp":"2023-08-02T21:30:32.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:32.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:19.000+0000","Name":"Q-01220","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKaiAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS"},"Id":"01t7e000009As7WAAS","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:30:16.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:16.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:17.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBrEAAU","LastReferencedDate":"2023-11-09T20:07:40.000+0000","LastViewedDate":"2023-11-09T20:07:40.000+0000","SystemModstamp":"2023-11-09T20:07:41.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:41.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:33.000+0000","Name":"Q-00205","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DwgAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA"},"Id":"01t6s000004g3qtAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:32.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/01u7e00000IsjjEAAR"},"Id":"01u7e00000IsjjEAAR","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7WAAS","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:30:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:17.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/a0v7e000008xXorAAE"},"Id":"a0v7e000008xXorAAE","IsDeleted":false,"Name":"QL-0002631","CreatedDate":"2023-08-02T21:30:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:27.000+0000","SBQQ__Quote__c":"a0z7e00000BDKaiAAH","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":"01u7e00000IsjjEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","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},{"PricebookEntries":[],"Products":["01t7e000009As7WAAS"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXorAAE","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":"0000001325","SystemModstamp":"2023-08-02T21:30:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:33.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":"01u7e00000IsjjEAAR","OrderId":"8017e000000nR7lAAE","IsDeleted":false,"Product2Id":"01t7e000009As7WAAS","Id":"8027e000001bQebAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQebAAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEXEAA3"],"Accounts":["0017e00001iaMT1AAM"],"OrderItems":["8027e000001bQebAAE"],"Quotes":["a0z7e00000BDKaiAAH"],"Opportunity":{"Id":"0067e00000NfEXEAA3","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEXEAA3","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":"a0z7e00000BDKaiAAH","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/v59.0/sobjects/PricebookEntry/01u6s000006MyRfAAK"},"Id":"01u6s000006MyRfAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qtAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:32.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA"},"Id":"a0v6s000000tledAAA","IsDeleted":false,"Name":"QL-0001703","CreatedDate":"2023-11-09T20:07:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:38.000+0000","SBQQ__Quote__c":"a0z6s0000016DwgAAE","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":"01u6s000006MyRfAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","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-11-09","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-11-09 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":["01t6s000004g3qtAAA"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tledAAA","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":"0000000505","SystemModstamp":"2023-11-09T20:07:42.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:41.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRfAAK","OrderId":"8016s000001FXydAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qtAAA","Id":"8026s0000014Mw2AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mw2AAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE30AAF"],"Accounts":["0016s00000fzBrEAAU"],"OrderItems":["8026s0000014Mw2AAE"],"Quotes":["a0z6s0000016DwgAAE"],"Opportunity":{"Id":"0066s00000CfE30AAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF","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":"a0z6s0000016DwgAAE","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:30:36.000+0000","LastViewedDate":"2023-08-02T21:30:36.000+0000","SystemModstamp":"2023-08-02T21:30:35.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:33.000+0000","TotalAmount":1440.00,"OrderNumber":"00001303","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:30:35.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEXEAA3","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7lAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T20:07:43.000+0000","LastViewedDate":"2023-11-09T20:07:43.000+0000","SystemModstamp":"2023-11-09T20:07:42.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:41.000+0000","TotalAmount":1440.00,"OrderNumber":"00000276","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:07:42.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE30AAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXydAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXydAAG","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 @@ -2884,10 +2907,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: Thu, 09 Nov 2023 20:07:44 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%278017e000000nR7lAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXydAAG%27%0A body: encoding: US-ASCII string: '' @@ -2906,12 +2929,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:39 GMT + - Thu, 09 Nov 2023 20:07:44 GMT Set-Cookie: - - BrowserId=02AN2TF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:39 + - BrowserId=pQI_jn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2924,7 +2947,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13518/5000000 + - api-usage=615/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2933,11 +2956,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Type":"New","OpportunityId":"0067e00000NfEXEAA3","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEXEAA3"},"SBQQ__AmendedContract__c":null}}]}' - 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/8016s000001FXydAAG"},"Type":"New","OpportunityId":"0066s00000CfE30AAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE30AAF"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 20:07:44 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nR7lAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXydAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2956,12 +2979,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:39 GMT + - Thu, 09 Nov 2023 20:07:44 GMT Set-Cookie: - - BrowserId=06NYPDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:39 + - BrowserId=pRBwzX87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2974,7 +2997,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13523/5000000 + - api-usage=607/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2983,14 +3006,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE"}]}' - 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/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:44 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]=0017e00001iaMT1AAM&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iaMT1AAM + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBrEAAU&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBrEAAU headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2999,13 +3022,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - 77ed6d85-ed9a-4d5f-9fa9-088da1d442cf + - 57f45aae-b9bd-4be1-846b-ead12b25fd6e 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3020,37 +3043,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:40 GMT + - Thu, 09 Nov 2023 20:07:44 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 77ed6d85-ed9a-4d5f-9fa9-088da1d442cf + - 57f45aae-b9bd-4be1-846b-ead12b25fd6e Original-Request: - - req_rvI4r3gtxbdrpE + - req_WBgnXFnL6wJIAy Request-Id: - - req_rvI4r3gtxbdrpE + - req_WBgnXFnL6wJIAy 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: @@ -3059,11 +3089,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXiFUgzHkZabO", + "id": "cus_Oybjh147v6FUqZ", "object": "customer", "address": null, "balance": 0, - "created": 1691011840, + "created": 1699560464, "currency": null, "default_currency": null, "default_source": null, @@ -3071,7 +3101,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "29787442", + "invoice_prefix": "BB5D090F", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3080,10 +3110,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMT1AAM", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMT1AAM" + "salesforce_account_id": "0016s00000fzBrEAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBrEAAU" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3091,13 +3121,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:44 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBrEAAU body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ONXiFUgzHkZabO"}' + string: '{"Stripe_ID__c":"cus_Oybjh147v6FUqZ"}' headers: User-Agent: - Faraday v2.4.0 @@ -3115,12 +3145,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:40 GMT + - Thu, 09 Nov 2023 20:07:45 GMT Set-Cookie: - - BrowserId=1Cl4GDF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:40 + - BrowserId=pW-AxH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3135,17 +3165,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13523/5000000 + - api-usage=608/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:45 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]=01t7e000009As7WAAS&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009As7WAAS + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qtAAA&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qtAAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3154,15 +3184,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_rvI4r3gtxbdrpE","request_duration_ms":410}}' + - '{"last_request_metrics":{"request_id":"req_WBgnXFnL6wJIAy","request_duration_ms":502}}' Idempotency-Key: - - 78f48bf4-0e5d-4974-a7f6-1333aeef79a3 + - 3e7fcc32-4194-4e1c-9e82-e6564a588b54 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3177,37 +3207,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:41 GMT + - Thu, 09 Nov 2023 20:07:45 GMT Content-Type: - application/json Content-Length: - - '748' + - '761' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 78f48bf4-0e5d-4974-a7f6-1333aeef79a3 + - 3e7fcc32-4194-4e1c-9e82-e6564a588b54 Original-Request: - - req_MkTbFv4YAwUqTQ + - req_a7dZ5z5lCiWcN3 Request-Id: - - req_MkTbFv4YAwUqTQ + - req_a7dZ5z5lCiWcN3 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: @@ -3216,39 +3253,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXinYYMkbC0um", + "id": "prod_OybjBE4Pyp1i6N", "object": "product", "active": true, "attributes": [], - "created": 1691011841, + "created": 1699560465, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7WAAS", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7WAAS" + "salesforce_product2_id": "01t6s000004g3qtAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qtAAA" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-70", + "sku": "rest-product2--2023-11-09-000000-utc-11", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691011841, + "updated": 1699560465, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qtAAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ONXinYYMkbC0um"}' + string: '{"Stripe_ID__c":"prod_OybjBE4Pyp1i6N"}' headers: User-Agent: - Faraday v2.4.0 @@ -3266,12 +3304,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:41 GMT + - Thu, 09 Nov 2023 20:07:45 GMT Set-Cookie: - - BrowserId=1MjFpTF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:41 + - BrowserId=pdffX387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3286,14 +3324,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13524/5000000 + - api-usage=609/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:45 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%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -3312,12 +3350,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:42 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1TFLjTF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:42 + - BrowserId=pgxdFH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3330,7 +3368,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13525/5000000 + - api-usage=609/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3340,10 +3378,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: Thu, 09 Nov 2023 20:07:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -3362,12 +3400,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:42 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1XS9gjF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:42 + - BrowserId=phnKJX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3380,7 +3418,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13519/5000000 + - api-usage=616/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3390,10 +3428,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: Thu, 09 Nov 2023 20:07:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qtAAA body: encoding: US-ASCII string: '' @@ -3412,12 +3450,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:43 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1bhWHTF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:43 + - BrowserId=pieGOH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3430,9 +3468,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13527/5000000 + - api-usage=610/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:41 GMT + - Thu, 09 Nov 2023 20:07:45 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3441,15 +3479,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS"},"Id":"01t7e000009As7WAAS","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:30:16.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:41.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/01t6s000004g3qtAAA"},"Id":"01t6s000004g3qtAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:45.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_ONXinYYMkbC0um","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXinYYMkbC0um"}' - 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_OybjBE4Pyp1i6N","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OybjBE4Pyp1i6N"}' + recorded_at: Thu, 09 Nov 2023 20:07:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQebAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mw2AAE%27%0A body: encoding: US-ASCII string: '' @@ -3468,12 +3506,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:43 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1g922zF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:43 + - BrowserId=pjmHuX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3486,7 +3524,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13528/5000000 + - api-usage=620/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3496,10 +3534,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: Thu, 09 Nov 2023 20:07:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQebAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mw2AAE%27%0A body: encoding: US-ASCII string: '' @@ -3518,12 +3556,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:44 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1l4y3zF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:44 + - BrowserId=pkmMuH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3536,7 +3574,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13524/5000000 + - api-usage=619/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3546,10 +3584,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: Thu, 09 Nov 2023 20:07:46 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -3568,12 +3606,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:44 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1qj33jF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:44 + - BrowserId=plfkw387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3586,7 +3624,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13529/5000000 + - api-usage=618/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3596,13 +3634,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: Thu, 09 Nov 2023 20:07:46 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_ONXinYYMkbC0um&metadata[salesforce_pricebook_entry_id]=01u7e00000IsjjEAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000IsjjEAAR + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OybjBE4Pyp1i6N&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRfAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRfAAK headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3610,16 +3648,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_MkTbFv4YAwUqTQ","request_duration_ms":271}}' Idempotency-Key: - - c920ca42-9375-4642-91ab-4b4a7b45e090 + - 81668010-aefd-4eb0-b052-5e49f544d455 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3634,37 +3670,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:45 GMT + - Thu, 09 Nov 2023 20:07:46 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - c920ca42-9375-4642-91ab-4b4a7b45e090 + - 81668010-aefd-4eb0-b052-5e49f544d455 Original-Request: - - req_cYdTpS8xKJ8dnm + - req_8Q31TvCrprm3Ko Request-Id: - - req_cYdTpS8xKJ8dnm + - req_8Q31TvCrprm3Ko 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: @@ -3673,21 +3716,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3702,13 +3745,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:46 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjEAAR + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRfAAK body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NamcyIsgf92XbAOqBYiOvvD"}' + string: '{"Stripe_ID__c":"price_1OAeVyIsgf92XbAOaSCebWEJ"}' headers: User-Agent: - Faraday v2.4.0 @@ -3726,12 +3769,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:45 GMT + - Thu, 09 Nov 2023 20:07:46 GMT Set-Cookie: - - BrowserId=1xTZIzF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:45 + - BrowserId=ppPcOH87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3746,14 +3789,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13530/5000000 + - api-usage=617/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:47 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bQebAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014Mw2AAE%27 body: encoding: US-ASCII string: '' @@ -3772,12 +3815,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:45 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Set-Cookie: - - BrowserId=11RSSTF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:45 + - BrowserId=pqs00387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3790,7 +3833,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13529/5000000 + - api-usage=618/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3799,11 +3842,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA"},"Id":"a1N7e000002fm33EAA"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ"},"Id":"a1N6s00000113iVEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tledAAA%27 body: encoding: US-ASCII string: '' @@ -3822,12 +3865,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:46 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Set-Cookie: - - BrowserId=15lLXTF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:46 + - BrowserId=prqeF387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3840,9 +3883,59 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13526/5000000 + - api-usage=608/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":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk7iEAC"},"Id":"a1P6s000001Bk7iEAC"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:47 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:07:47 GMT + Set-Cookie: + - BrowserId=psoup387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=619/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:35 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3851,12 +3944,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA"},"Id":"a1N7e000002fm33EAA","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0146","CreatedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:35.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bQebAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFuwEAG","Stripe_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_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ"},"Id":"a1N6s00000113iVEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0020","CreatedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:42.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014Mw2AAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJ6EAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:07:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFuwEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ6EAI body: encoding: US-ASCII string: '' @@ -3875,12 +3968,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:46 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Set-Cookie: - - BrowserId=1-h8ujF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:46 + - BrowserId=ptkjBX87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3893,9 +3986,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13525/5000000 + - api-usage=613/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:30 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3904,15 +3997,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFuwEAG"},"Id":"a1R7e000007JFuwEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0125","CreatedDate":"2023-08-02T21:30:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:30.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ6EAI"},"Id":"a1R6s000000uvJ6EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0017","CreatedDate":"2023-11-09T20:07:40.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:40.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:40.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:47 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002fm33EAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002fm33EAA + string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iVEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iVEAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3921,15 +4014,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_cYdTpS8xKJ8dnm","request_duration_ms":324}}' + - '{"last_request_metrics":{"request_id":"req_a7dZ5z5lCiWcN3","request_duration_ms":263}}' Idempotency-Key: - - 1531426a-d9cb-4f05-bac4-3595d601f01b + - cb49df02-01bd-4490-8748-f2f2391d4fe4 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3944,37 +4037,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:47 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 1531426a-d9cb-4f05-bac4-3595d601f01b + - cb49df02-01bd-4490-8748-f2f2391d4fe4 Original-Request: - - req_s8p63LMq9ZwNFt + - req_oVcjLWnnkHNyoJ Request-Id: - - req_s8p63LMq9ZwNFt + - req_oVcjLWnnkHNyoJ 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: @@ -3983,18 +4083,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "35zEfirQ", + "id": "4HuhZaSV", "object": "coupon", "amount_off": null, - "created": 1691011847, + "created": 1699560467, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm33EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm33EAA" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iVEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iVEAQ" }, "name": "25% off coupon", "percent_off": 25.0, @@ -4002,13 +4102,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:47 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"35zEfirQ"}' + string: '{"Stripe_ID__c":"4HuhZaSV"}' headers: User-Agent: - Faraday v2.4.0 @@ -4026,12 +4126,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:47 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Set-Cookie: - - BrowserId=2G08pzF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:47 + - BrowserId=pwq5-X87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4046,14 +4146,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13520/5000000 + - api-usage=620/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -4072,12 +4172,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:48 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Set-Cookie: - - BrowserId=2LFxZzF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:48 + - BrowserId=pxtcMn87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4090,11 +4190,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13527/5000000 + - api-usage=614/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4211,7 +4311,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4222,14 +4322,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4397,7 +4495,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 @@ -4413,7 +4512,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4431,9 +4532,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4577,9 +4677,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4701,9 +4801,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 @@ -4755,7 +4864,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 @@ -5190,7 +5299,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5370,7 +5484,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5395,7 +5509,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5451,13 +5576,13 @@ 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: Thu, 09 Nov 2023 20:07:48 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFuwEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ6EAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"35zEfirQ"}' + string: '{"Stripe_ID__c":"4HuhZaSV"}' headers: User-Agent: - Faraday v2.4.0 @@ -5475,12 +5600,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:50 GMT + - Thu, 09 Nov 2023 20:07:48 GMT Set-Cookie: - - BrowserId=2fDPljF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:50 + - BrowserId=p2RzLn87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5495,14 +5620,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13531/5000000 + - api-usage=615/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:48 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5521,12 +5646,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:50 GMT + - Thu, 09 Nov 2023 20:07:48 GMT Set-Cookie: - - BrowserId=2jit0zF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:50 + - BrowserId=p3desn87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5539,11 +5664,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13524/5000000 + - api-usage=620/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5660,7 +5785,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5671,14 +5796,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5846,7 +5969,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 @@ -5862,7 +5986,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -5880,9 +6006,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -6026,9 +6151,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6150,9 +6275,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 @@ -6204,7 +6338,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 @@ -6639,7 +6773,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6819,7 +6958,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6844,7 +6983,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -6900,30 +7050,18 @@ 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: Thu, 09 Nov 2023 20:07:48 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamcyIsgf92XbAOqBYiOvvD + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXydAAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_s8p63LMq9ZwNFt","request_duration_ms":304}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -6933,75 +7071,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Wed, 02 Aug 2023 21:30:51 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_LC7dAXttfRajxJ - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 20:07:48 GMT + Set-Cookie: + - BrowserId=p8Op-387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:48 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=621/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1691011844, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" - }, - "nickname": null, - "product": "prod_ONXinYYMkbC0um", - "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 + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ"},"Id":"a1N6s00000113iUEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:48 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nR7lAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DwgAAE%27 body: encoding: US-ASCII string: '' @@ -7020,12 +7122,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:51 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Set-Cookie: - - BrowserId=2vzBczF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:51 + - BrowserId=p8-3Vn87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7038,7 +7140,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13528/5000000 + - api-usage=621/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7047,11 +7149,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA"},"Id":"a1N7e000002fm32EAA"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKNIEA4"},"Id":"a1Q6s000001FKNIEA4"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ body: encoding: US-ASCII string: '' @@ -7070,12 +7172,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:52 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Set-Cookie: - - BrowserId=2ziR3zF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:52 + - BrowserId=p9tQe387Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7088,9 +7190,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13525/5000000 + - api-usage=621/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:35 GMT + - Thu, 09 Nov 2023 20:07:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7099,12 +7201,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA"},"Id":"a1N7e000002fm32EAA","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0145","CreatedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:35.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nR7lAAE","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFv1EAG","Stripe_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_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ"},"Id":"a1N6s00000113iUEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0019","CreatedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:42.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXydAAG","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJBEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv1EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJBEAY body: encoding: US-ASCII string: '' @@ -7123,12 +7225,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:52 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Set-Cookie: - - BrowserId=23Wa2TF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:52 + - BrowserId=p-i9_n87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7141,9 +7243,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13526/5000000 + - api-usage=609/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:31 GMT + - Thu, 09 Nov 2023 20:07:40 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7152,15 +7254,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv1EAG"},"Id":"a1R7e000007JFv1EAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0126","CreatedDate":"2023-08-02T21:30:31.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:31.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:31.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJBEAY"},"Id":"a1R6s000000uvJBEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0018","CreatedDate":"2023-11-09T20:07:40.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:40.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:40.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002fm32EAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002fm32EAA¤cy=usd + string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iUEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iUEAQ¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7169,15 +7271,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_LC7dAXttfRajxJ","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_oVcjLWnnkHNyoJ","request_duration_ms":229}}' Idempotency-Key: - - d0894575-60d8-46cc-84d7-b009101a68fc + - cee6ec3a-20b8-46ca-bd56-19a5eb675182 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7192,37 +7294,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:53 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - d0894575-60d8-46cc-84d7-b009101a68fc + - cee6ec3a-20b8-46ca-bd56-19a5eb675182 Original-Request: - - req_qn7MwW4cXYRUkS + - req_mjQCQz3DAi2UQk Request-Id: - - req_qn7MwW4cXYRUkS + - req_mjQCQz3DAi2UQk 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: @@ -7231,18 +7340,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "SKOuY0eI", + "id": "AziNcVjl", "object": "coupon", "amount_off": 1000, - "created": 1691011853, + "created": 1699560469, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm32EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm32EAA" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iUEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iUEAQ" }, "name": "$10 off coupon", "percent_off": null, @@ -7250,13 +7359,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"SKOuY0eI"}' + string: '{"Stripe_ID__c":"AziNcVjl"}' headers: User-Agent: - Faraday v2.4.0 @@ -7274,12 +7383,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:53 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Set-Cookie: - - BrowserId=2-zG8zF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:53 + - BrowserId=qB-r9H87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7294,17 +7403,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13529/5000000 + - api-usage=611/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv1EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJBEAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"SKOuY0eI"}' + string: '{"Stripe_ID__c":"AziNcVjl"}' headers: User-Agent: - Faraday v2.4.0 @@ -7322,12 +7431,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:53 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Set-Cookie: - - BrowserId=3Cf6czF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:53 + - BrowserId=qDERo387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7342,14 +7451,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13521/5000000 + - api-usage=610/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXiFUgzHkZabO?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oybjh147v6FUqZ?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7361,13 +7470,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_qn7MwW4cXYRUkS","request_duration_ms":223}}' + - '{"last_request_metrics":{"request_id":"req_8Q31TvCrprm3Ko","request_duration_ms":260}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7382,31 +7491,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:54 GMT + - Thu, 09 Nov 2023 20:07:49 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_UCRwXMqyyxcmAX + - req_qoLxdcxzZEjL2V Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7415,11 +7532,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXiFUgzHkZabO", + "id": "cus_Oybjh147v6FUqZ", "object": "customer", "address": null, "balance": 0, - "created": 1691011840, + "created": 1699560464, "currency": null, "default_currency": null, "default_source": null, @@ -7427,7 +7544,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "29787442", + "invoice_prefix": "BB5D090F", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7436,10 +7553,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMT1AAM", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMT1AAM" + "salesforce_account_id": "0016s00000fzBrEAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBrEAAU" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7447,13 +7564,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:49 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAeVyIsgf92XbAOaSCebWEJ + 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_qoLxdcxzZEjL2V","request_duration_ms":206}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 20:07:50 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_IwoyWVojBxzu66 + 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_1OAeVyIsgf92XbAOaSCebWEJ", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699560466, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" + }, + "nickname": null, + "product": "prod_OybjBE4Pyp1i6N", + "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: Thu, 09 Nov 2023 20:07:50 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nR7lAAE&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7lAAE&start_date=1690934400&customer=cus_ONXiFUgzHkZabO&phases[0][items][0][price]=price_1NamcyIsgf92XbAOqBYiOvvD&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQebAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQebAAE&phases[0][items][0][discounts][0][coupon]=35zEfirQ&phases[0][items][0][quantity]=1&phases[0][end_date]=1722556800&phases[0][metadata][salesforce_order_id]=8017e000000nR7lAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7lAAE&phases[0][discounts][0][coupon]=SKOuY0eI + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXydAAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXydAAG&start_date=1699488000&customer=cus_Oybjh147v6FUqZ&phases[0][items][0][price]=price_1OAeVyIsgf92XbAOaSCebWEJ&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014Mw2AAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014Mw2AAE&phases[0][items][0][discounts][0][coupon]=4HuhZaSV&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXydAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXydAAG&phases[0][discounts][0][coupon]=AziNcVjl headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7462,15 +7684,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_UCRwXMqyyxcmAX","request_duration_ms":195}}' + - '{"last_request_metrics":{"request_id":"req_mjQCQz3DAi2UQk","request_duration_ms":259}}' Idempotency-Key: - - f8a93ecf-ed9a-49a0-9df3-33be6c982112 + - f5dae17d-83e0-4f14-b214-7057ad72c995 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7485,37 +7707,45 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:54 GMT + - Thu, 09 Nov 2023 20:07:50 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - f8a93ecf-ed9a-49a0-9df3-33be6c982112 + - f5dae17d-83e0-4f14-b214-7057ad72c995 Original-Request: - - req_36WKm2KD5HS2oQ + - req_dP7ZQKw6Ctyfg1 Request-Id: - - req_36WKm2KD5HS2oQ + - req_dP7ZQKw6Ctyfg1 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: @@ -7524,17 +7754,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7553,8 +7783,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -7563,45 +7793,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7611,16 +7841,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:50 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1Namd8Isgf92XbAOGlPN9LCW"}' + string: '{"Stripe_ID__c":"sub_sched_1OAeW2Isgf92XbAO9BXfkIPA"}' headers: User-Agent: - Faraday v2.4.0 @@ -7638,12 +7868,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:55 GMT + - Thu, 09 Nov 2023 20:07:50 GMT Set-Cookie: - - BrowserId=3PU1fDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:55 + - BrowserId=qOooI387Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7658,18 +7888,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13530/5000000 + - api-usage=622/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:51 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nR7lAAE-8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXydAAG-8016s000001FXydAAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR7lAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR7lAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXydAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXydAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAeW2Isgf92XbAO9BXfkIPA","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_dP7ZQKw6Ctyfg1"}' headers: User-Agent: - Faraday v2.4.0 @@ -7687,12 +7917,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:30:55 GMT + - Thu, 09 Nov 2023 20:07:51 GMT Set-Cookie: - - BrowserId=3WIBSTF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:55 + - BrowserId=qQ89CX87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7705,20 +7935,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13537/5000000 + - api-usage=607/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrxjEAC" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxmTEAS" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrxjEAC","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1W6s000000KxmTEAS","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 20:07:51 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7730,13 +7960,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_36WKm2KD5HS2oQ","request_duration_ms":664}}' + - '{"last_request_metrics":{"request_id":"req_IwoyWVojBxzu66","request_duration_ms":203}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7751,31 +7981,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:30:56 GMT + - Thu, 09 Nov 2023 20:07:51 GMT Content-Type: - application/json Content-Length: - - '3745' + - '3725' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_PbhBiCCZGW44qc + - req_Me7R2a2pPiMci3 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7784,17 +8022,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7813,8 +8051,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -7823,49 +8061,49 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", "price": { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7885,12 +8123,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7900,13 +8138,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:51 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: UTF-8 string: '{"SBQQ__Contracted__c":true}' @@ -7927,12 +8165,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:30:56 GMT + - Thu, 09 Nov 2023 20:07:51 GMT Set-Cookie: - - BrowserId=3dl7ODF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:56 + - BrowserId=qUweuX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7947,14 +8185,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13547/5000000 + - api-usage=619/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:52 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278017e000000nR7lAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278016s000001FXydAAG%27 body: encoding: US-ASCII string: '' @@ -7973,12 +8211,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:59 GMT + - Thu, 09 Nov 2023 20:07:53 GMT Set-Cookie: - - BrowserId=32rwtjF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:59 + - BrowserId=qjlk9X87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7991,7 +8229,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13548/5000000 + - api-usage=622/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8000,11 +8238,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM"},"Id":"8007e000001iCJfAAM"}]}' - 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/8006s0000008JkCAAU"},"Id":"8006s0000008JkCAAU"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:53 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8006s0000008JkCAAU body: encoding: US-ASCII string: '' @@ -8023,12 +8261,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:30:59 GMT + - Thu, 09 Nov 2023 20:07:53 GMT Set-Cookie: - - BrowserId=38OX1zF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:30:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:30:59 + - BrowserId=qkY2K387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8041,9 +8279,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13541/5000000 + - api-usage=611/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:58 GMT + - Thu, 09 Nov 2023 20:07:52 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8052,12 +8290,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM"},"Id":"8007e000001iCJfAAM","AccountId":"0017e00001iaMT1AAM","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":"00000328","LastApprovedDate":null,"CreatedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:58.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":"0067e00000NfEXEAA3","SBQQ__Order__c":"8017e000000nR7lAAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","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/8006s0000008JkCAAU"},"Id":"8006s0000008JkCAAU","AccountId":"0016s00000fzBrEAAU","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-11-09","EndDate":"2024-11-08","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":12,"OwnerId":"0056s000006SKknAAG","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":"00000184","LastApprovedDate":null,"CreatedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:52.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-11-08","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0066s00000CfE30AAF","SBQQ__Order__c":"8016s000001FXydAAG","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z6s0000016DwgAAE","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: Thu, 09 Nov 2023 20:07:53 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8007e000001iCJfAAM + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8006s0000008JkCAAU body: encoding: UTF-8 string: "{}" @@ -8078,12 +8316,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:00 GMT + - Thu, 09 Nov 2023 20:07:53 GMT Set-Cookie: - - BrowserId=4BXXAjF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:00 + - BrowserId=qlaw-H87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8101,28 +8339,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH\"},\"Id\":\"a0z7e00000BDKanAAH\",\"Name\":\"Q-01221\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJfAAM\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE\"},\"Id\":\"a0z6s0000016DwlAAE\",\"Name\":\"Q-00206\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkCAAU\",\"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\":\"0067e00000NfEYiAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/8007e000001iCJfAAM\"},\"Id\":\"8007e000001iCJfAAM\",\"ContractNumber\":\"00000328\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN\"},\"Id\":\"0067e00000NfEYiAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKanAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsqAAE\"},\"Id\":\"a0v7e000008xXsqAAE\",\"SBQQ__Quote__c\":\"a0z7e00000BDKanAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"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-0002632\",\"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\":\"a1B7e00000EX4ynEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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/a1B7e00000EX4ynEAD\"},\"Id\":\"a1B7e00000EX4ynEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__Contract__c\":\"8007e000001iCJfAAM\"},\"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\":\"0066s00000CfE35AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU\"},\"Id\":\"8006s0000008JkCAAU\",\"ContractNumber\":\"00000184\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF\"},\"Id\":\"0066s00000CfE35AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwlAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA\"},\"Id\":\"a0v6s000000tlejAAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DwlAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"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-0001704\",\"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-11-09 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\":\"a1B6s000000xyMIEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY\"},\"Id\":\"a1B6s000000xyMIEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__Contract__c\":\"8006s0000008JkCAAU\"},\"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-11-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:56 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://connect-saas-89822-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\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH\"},\"Id\":\"a0z7e00000BDKanAAH\",\"Name\":\"Q-01221\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJfAAM\",\"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\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE\"},\"Id\":\"a0z6s0000016DwlAAE\",\"Name\":\"Q-00206\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkCAAU\",\"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\":\"0067e00000NfEYiAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/8007e000001iCJfAAM\"},\"Id\":\"8007e000001iCJfAAM\",\"ContractNumber\":\"00000328\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN\"},\"Id\":\"0067e00000NfEYiAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKanAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":6,\"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\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsqAAE\"},\"Id\":\"a0v7e000008xXsqAAE\",\"SBQQ__Quote__c\":\"a0z7e00000BDKanAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"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-0002632\",\"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\":\"a1B7e00000EX4ynEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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/a1B7e00000EX4ynEAD\"},\"Id\":\"a1B7e00000EX4ynEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__Contract__c\":\"8007e000001iCJfAAM\"},\"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\":\"0066s00000CfE35AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU\"},\"Id\":\"8006s0000008JkCAAU\",\"ContractNumber\":\"00000184\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF\"},\"Id\":\"0066s00000CfE35AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwlAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":6,\"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\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA\"},\"Id\":\"a0v6s000000tlejAAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DwlAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"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-0001704\",\"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-11-09 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\":\"a1B6s000000xyMIEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY\"},\"Id\":\"a1B6s000000xyMIEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__Contract__c\":\"8006s0000008JkCAAU\"},\"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-11-09\",\"effectiveEndDate\":\"2024-11-08\",\"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 @@ -8140,12 +8378,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:03 GMT + - Thu, 09 Nov 2023 20:07:56 GMT Set-Cookie: - - BrowserId=4hAf3DF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:03 + - BrowserId=rCdSan87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8163,28 +8401,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH\"},\"Id\":\"a0z7e00000BDKanAAH\",\"Name\":\"Q-01221\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJfAAM\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE\"},\"Id\":\"a0z6s0000016DwlAAE\",\"Name\":\"Q-00206\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkCAAU\",\"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\":\"0067e00000NfEYiAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/8007e000001iCJfAAM\"},\"Id\":\"8007e000001iCJfAAM\",\"ContractNumber\":\"00000328\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN\"},\"Id\":\"0067e00000NfEYiAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKanAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":720.00,\"netNonSegmentTotal\":720.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsqAAE\"},\"Id\":\"a0v7e000008xXsqAAE\",\"SBQQ__Quote__c\":\"a0z7e00000BDKanAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"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-0002633\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.00,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":720.00,\"SBQQ__NetTotal__c\":720.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0000,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.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\":720.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ynEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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/a1B7e00000EX4ynEAD\"},\"Id\":\"a1B7e00000EX4ynEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__Contract__c\":\"8007e000001iCJfAAM\"},\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"0066s00000CfE35AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU\"},\"Id\":\"8006s0000008JkCAAU\",\"ContractNumber\":\"00000184\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF\"},\"Id\":\"0066s00000CfE35AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwlAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":720.00,\"netNonSegmentTotal\":720.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA\"},\"Id\":\"a0v6s000000tlejAAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DwlAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"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-0001705\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.00,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":720.00,\"SBQQ__NetTotal__c\":720.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0000,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":720.00,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMIEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY\"},\"Id\":\"a1B6s000000xyMIEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__Contract__c\":\"8006s0000008JkCAAU\"},\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:57 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH\"},\"Id\":\"a0z7e00000BDKanAAH\",\"Name\":\"Q-01221\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMT1AAM\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJfAAM\",\"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\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE\"},\"Id\":\"a0z6s0000016DwlAAE\",\"Name\":\"Q-00206\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkCAAU\",\"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\":\"0067e00000NfEYiAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"Id\":\"0017e00001iaMT1AAM\",\"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/8007e000001iCJfAAM\"},\"Id\":\"8007e000001iCJfAAM\",\"ContractNumber\":\"00000328\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN\"},\"Id\":\"0067e00000NfEYiAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKanAAH\",\"AccountId\":\"0017e00001iaMT1AAM\"},\"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\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsqAAE\"},\"Id\":\"a0v7e000008xXsqAAE\",\"SBQQ__Quote__c\":\"a0z7e00000BDKanAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7WAAS\",\"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-0002633\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.0,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":720.0,\"SBQQ__NetTotal__c\":720.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.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\":720.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ynEAD\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS\"},\"Id\":\"01t7e000009As7WAAS\",\"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/a1B7e00000EX4ynEAD\"},\"Id\":\"a1B7e00000EX4ynEAD\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__Contract__c\":\"8007e000001iCJfAAM\"},\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"0066s00000CfE35AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"Id\":\"0016s00000fzBrEAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU\"},\"Id\":\"8006s0000008JkCAAU\",\"ContractNumber\":\"00000184\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF\"},\"Id\":\"0066s00000CfE35AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwlAAE\",\"AccountId\":\"0016s00000fzBrEAAU\"},\"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\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA\"},\"Id\":\"a0v6s000000tlejAAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DwlAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"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-0001705\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.0,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":720.0,\"SBQQ__NetTotal__c\":720.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":720.0,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMIEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"Id\":\"01t6s000004g3qtAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY\"},\"Id\":\"a1B6s000000xyMIEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__Contract__c\":\"8006s0000008JkCAAU\"},\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -8202,12 +8440,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:05 GMT + - Thu, 09 Nov 2023 20:07:57 GMT Set-Cookie: - - BrowserId=40wiejF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:05 + - BrowserId=rMA3Fn87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8227,18 +8465,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH\"},\"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/0067e00000NfEYiAAN\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKanAAH\",\"AccountId\":\"0017e00001iaMT1AAM\",\"Id\":\"0067e00000NfEYiAAN\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMT1AAM\",\"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-01221\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":6.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\":\"0017e00001iaMT1AAM\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-02-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/8007e000001iCJfAAM\"},\"ContractNumber\":\"00000328\",\"Id\":\"8007e000001iCJfAAM\"},\"SBQQ__Opportunity2__c\":\"0067e00000NfEYiAAN\",\"SBQQ__MasterContract__c\":\"8007e000001iCJfAAM\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z7e00000BDKanAAH\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKanAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsqAAE\"},\"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\":\"a0z7e00000BDKanAAH\",\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":720.0,\"Id\":\"a0v7e000008xXsqAAE\",\"SBQQ__EffectiveSubscriptionTerm__c\":6.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":720.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/a1B7e00000EX4ynEAD\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXorAAE\",\"SBQQ__Contract__c\":\"8007e000001iCJfAAM\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXorAAE\",\"Id\":\"a1B7e00000EX4ynEAD\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4ynEAD\",\"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\":720.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\":6.0,\"Name\":\"QL-0002633\",\"SBQQ__CustomerPrice__c\":720.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\":720.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\":720.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/01t7e000009As7WAAS\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7WAAS\",\"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\":\"01t7e000009As7WAAS\",\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE35AAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwlAAE\",\"AccountId\":\"0016s00000fzBrEAAU\",\"Id\":\"0066s00000CfE35AAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBrEAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00206\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":6.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBrEAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU\"},\"ContractNumber\":\"00000184\",\"Id\":\"8006s0000008JkCAAU\"},\"SBQQ__Opportunity2__c\":\"0066s00000CfE35AAF\",\"SBQQ__MasterContract__c\":\"8006s0000008JkCAAU\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z6s0000016DwlAAE\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwlAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA\"},\"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-11-09 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\":\"a0z6s0000016DwlAAE\",\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":720.0,\"Id\":\"a0v6s000000tlejAAA\",\"SBQQ__EffectiveSubscriptionTerm__c\":6.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":720.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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tledAAA\",\"SBQQ__Contract__c\":\"8006s0000008JkCAAU\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tledAAA\",\"Id\":\"a1B6s000000xyMIEAY\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMIEAY\",\"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\":720.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\":6.0,\"Name\":\"QL-0001705\",\"SBQQ__CustomerPrice__c\":720.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\":720.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\":720.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qtAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qtAAA\",\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:07:57 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://connect-saas-89822-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: '' @@ -8257,12 +8495,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:07 GMT + - Thu, 09 Nov 2023 20:07:57 GMT Set-Cookie: - - BrowserId=5GjdKzF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:07 + - BrowserId=rPGATn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8275,7 +8513,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13546/5000000 + - api-usage=620/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8284,14 +8522,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:57 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE body: encoding: UTF-8 - string: '{"SBQQ__PricebookId__c":"01s7e000002eLFEAA2"}' + string: '{"SBQQ__PricebookId__c":"01s6s000002xdpsAAA"}' headers: User-Agent: - Faraday v2.4.0 @@ -8309,12 +8547,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:08 GMT + - Thu, 09 Nov 2023 20:07:57 GMT Set-Cookie: - - BrowserId=5K2u0TF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:08 + - BrowserId=rP1mkH87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:57 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8329,14 +8567,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13530/5000000 + - api-usage=616/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:59 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -8357,12 +8595,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:09 GMT + - Thu, 09 Nov 2023 20:07:59 GMT Set-Cookie: - - BrowserId=5bSXLTF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:09 + - BrowserId=rinYmX87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8377,14 +8615,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13542/5000000 + - api-usage=625/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:01 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -8403,12 +8641,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:11 GMT + - Thu, 09 Nov 2023 20:08:01 GMT Set-Cookie: - - BrowserId=5s2odTF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:11 + - BrowserId=rxUjMH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8421,7 +8659,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13539/5000000 + - api-usage=629/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8430,12 +8668,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nR7qAAE"},"Id":"8017e000000nR7qAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEYiAAN","EffectiveDate":"2024-02-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":"00001304","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:31:10.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:11.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":"a0z7e00000BDKanAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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/8016s000001FXyiAAG"},"Id":"8016s000001FXyiAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE35AAF","EffectiveDate":"2024-05-09","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":"00000277","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:08:00.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:00.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:08:00.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":"a0z6s0000016DwlAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:01 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyiAAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -8456,12 +8694,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:12 GMT + - Thu, 09 Nov 2023 20:08:01 GMT Set-Cookie: - - BrowserId=5w9FFTF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:12 + - BrowserId=ryPJH387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8476,14 +8714,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13543/5000000 + - api-usage=627/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:01 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyiAAG body: encoding: US-ASCII string: '' @@ -8502,12 +8740,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:13 GMT + - Thu, 09 Nov 2023 20:08:01 GMT Set-Cookie: - - BrowserId=56bw8jF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:13 + - BrowserId=r3mJ6H87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8520,9 +8758,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13540/5000000 + - api-usage=624/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:31:12 GMT + - Thu, 09 Nov 2023 20:08:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8531,13 +8769,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE"},"Id":"8017e000000nR7qAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEYiAAN","EffectiveDate":"2024-02-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-02T21:31:12.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001304","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:31:10.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:12.000+0000","LastViewedDate":"2023-08-02T21:31:12.000+0000","LastReferencedDate":"2023-08-02T21:31:12.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyiAAG"},"Id":"8016s000001FXyiAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE35AAF","EffectiveDate":"2024-05-09","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-11-09T20:08:01.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000277","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:08:00.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:08:01.000+0000","LastViewedDate":"2023-11-09T20:08:01.000+0000","LastReferencedDate":"2023-11-09T20:08: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":"a0z7e00000BDKanAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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":"a0z6s0000016DwlAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:08:01 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyiAAG body: encoding: US-ASCII string: '' @@ -8556,12 +8794,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:13 GMT + - Thu, 09 Nov 2023 20:08:01 GMT Set-Cookie: - - BrowserId=5-a5IDF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:13 + - BrowserId=r4eUF387Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8574,9 +8812,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13531/5000000 + - api-usage=634/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:31:12 GMT + - Thu, 09 Nov 2023 20:08:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8585,16 +8823,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE"},"Id":"8017e000000nR7qAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEYiAAN","EffectiveDate":"2024-02-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-02T21:31:12.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001304","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:31:10.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:12.000+0000","LastViewedDate":"2023-08-02T21:31:13.000+0000","LastReferencedDate":"2023-08-02T21:31:13.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyiAAG"},"Id":"8016s000001FXyiAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE35AAF","EffectiveDate":"2024-05-09","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-11-09T20:08:01.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000277","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:08:00.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:08:01.000+0000","LastViewedDate":"2023-11-09T20:08:01.000+0000","LastReferencedDate":"2023-11-09T20:08: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":"a0z7e00000BDKanAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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":"a0z6s0000016DwlAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:08:02 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR7qAAE"]}' + string: '{"order_ids":["8016s000001FXyiAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -8612,12 +8850,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:14 GMT + - Thu, 09 Nov 2023 20:08:02 GMT Set-Cookie: - - BrowserId=6ClAiDF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:14 + - BrowserId=r5zw2387Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8637,39 +8875,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN"},"Id":"0067e00000NfEYiAAN","IsDeleted":false,"AccountId":"0017e00001iaMT1AAM","IsPrivate":false,"Name":"Amendment - for contract #00000328","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:01.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:01.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:31:01.000+0000","LastReferencedDate":"2023-08-02T21:31:01.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCJfAAM","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKanAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM"},"Id":"0017e00001iaMT1AAM","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:40.000+0000","LastViewedDate":"2023-08-02T21:30:40.000+0000","LastReferencedDate":"2023-08-02T21:30:40.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_ONXiFUgzHkZabO","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONXiFUgzHkZabO"},{"Accounts":["0017e00001iaMT1AAM"],"Opportunities":["0067e00000NfEYiAAN"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-02-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":"0067e00000NfEYiAAN","SBQQ__MasterContract__c":"8007e000001iCJfAAM","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:31:10.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-02T21:31:03.000+0000","SBQQ__EndDate__c":"2024-08-01","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF"},"Id":"0066s00000CfE35AAF","IsDeleted":false,"AccountId":"0016s00000fzBrEAAU","IsPrivate":false,"Name":"Amendment + for contract #00000184","StageName":"Prospecting","Probability":10,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:54.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:54.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:07:54.000+0000","LastReferencedDate":"2023-11-09T20:07:54.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8006s0000008JkCAAU","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwlAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU"},"Id":"0016s00000fzBrEAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:45.000+0000","LastViewedDate":"2023-11-09T20:07:45.000+0000","LastReferencedDate":"2023-11-09T20:07:45.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_Oybjh147v6FUqZ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_Oybjh147v6FUqZ"},{"Accounts":["0016s00000fzBrEAAU"],"Opportunities":["0066s00000CfE35AAF"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-12-09","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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-05-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE35AAF","SBQQ__MasterContract__c":"8006s0000008JkCAAU","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T20:07:59.000+0000","SBQQ__LastCalculatedOn__c":"2023-11-09T20:07:56.000+0000","SBQQ__EndDate__c":"2024-11-08","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":"0017e00001iaMT1AAM","LastReferencedDate":"2023-08-02T21:31:10.000+0000","LastViewedDate":"2023-08-02T21:31:10.000+0000","SystemModstamp":"2023-08-02T21:31:10.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:10.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:01.000+0000","Name":"Q-01221","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKanAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS"},"Id":"01t7e000009As7WAAS","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:30:16.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:45.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-02T21:30:43.000+0000","LastReferencedDate":"2023-08-02T21:30:43.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBrEAAU","LastReferencedDate":"2023-11-09T20:07:59.000+0000","LastViewedDate":"2023-11-09T20:07:59.000+0000","SystemModstamp":"2023-11-09T20:07:59.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:59.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:54.000+0000","Name":"Q-00206","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DwlAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA"},"Id":"01t6s000004g3qtAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:47.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-11-09T20:07:46.000+0000","LastReferencedDate":"2023-11-09T20:07:46.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_ONXinYYMkbC0um","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXinYYMkbC0um"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjEAAR"},"Id":"01u7e00000IsjjEAAR","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7WAAS","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:30:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:45.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:45.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NamcyIsgf92XbAOqBYiOvvD","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NamcyIsgf92XbAOqBYiOvvD"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM"},"Id":"8007e000001iCJfAAM","AccountId":"0017e00001iaMT1AAM","StartDate":"2023-08-02","EndDate":"2024-08-01","BillingAddress":null,"ContractTerm":12,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000328","CreatedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:58.000+0000","LastViewedDate":"2023-08-02T21:31:00.000+0000","LastReferencedDate":"2023-08-02T21:31:00.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":"0067e00000NfEXEAA3","SBQQ__Order__c":"8017e000000nR7lAAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","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/a0v7e000008xXsqAAE"},"Id":"a0v7e000008xXsqAAE","IsDeleted":false,"Name":"QL-0002633","CreatedDate":"2023-08-02T21:31:03.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:09.000+0000","SBQQ__Quote__c":"a0z7e00000BDKanAAH","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IsjjEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B7e00000EX4ynEAD","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-02-02","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RegularTotal__c":720.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/a0v7e000008xXorAAE"},"Id":"a0v7e000008xXorAAE","IsDeleted":false,"Name":"QL-0002631","CreatedDate":"2023-08-02T21:30:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:27.000+0000","SBQQ__Quote__c":"a0z7e00000BDKaiAAH","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":"01u7e00000IsjjEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","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/a1B7e00000EX4ynEAD"},"Id":"a1B7e00000EX4ynEAD","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000285","CreatedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:58.000+0000","SBQQ__Account__c":"0017e00001iaMT1AAM","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCJfAAM","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":"8027e000001bQebAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xXorAAE","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xXorAAE","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX4ynEAD","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-02","SBQQ__ContractNumber__c":"00000328","SBQQ__EndDate__c":"2024-08-01","SBQQ__ProductId__c":"01t7e000009As7W","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009As7W","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009As7WAAS"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQebAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXsqAAE","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000001326","SystemModstamp":"2023-08-02T21:31:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:10.000+0000","EndDate":"2024-08-01","ServiceDate":"2024-02-02","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjjEAAR","OrderId":"8017e000000nR7qAAE","IsDeleted":false,"Product2Id":"01t7e000009As7WAAS","Id":"8027e000001bQegAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQegAAE","type":"OrderItem"}},{"Contracts":["8007e000001iCJfAAM"],"PricebookEntries":[],"Products":["01t7e000009As7WAAS"],"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":"a1B7e00000EX4ynEAD","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":"a0v7e000008xXorAAE","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":"8007e000001iCJfAAM","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001325","SystemModstamp":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:33.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":"01u7e00000IsjjEAAR","OrderId":"8017e000000nR7lAAE","IsDeleted":false,"Product2Id":"01t7e000009As7WAAS","Id":"8027e000001bQebAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQebAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEXEAA3"},"Id":"0067e00000NfEXEAA3","IsDeleted":false,"AccountId":"0017e00001iaMT1AAM","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:30:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:19.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:30:18.000+0000","LastReferencedDate":"2023-08-02T21:30:18.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKaiAAH","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":["0067e00000NfEYiAAN"],"Accounts":["0017e00001iaMT1AAM"],"OrderItems":["8027e000001bQegAAE"],"Quotes":["a0z7e00000BDKanAAH"],"InitialOrderQuotes":["a0z7e00000BDKaiAAH"],"InitialOrderId":["8017e000000nR7lAAE"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","Id":"8007e000001iCJfAAM","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCJfAAM","Id":"0067e00000NfEYiAAN","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z7e00000BDKanAAH","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OybjBE4Pyp1i6N","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OybjBE4Pyp1i6N"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRfAAK"},"Id":"01u6s000006MyRfAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qtAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:46.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:46.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1OAeVyIsgf92XbAOaSCebWEJ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1OAeVyIsgf92XbAOaSCebWEJ"},{"attributes":{"type":"Contract","url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU"},"Id":"8006s0000008JkCAAU","AccountId":"0016s00000fzBrEAAU","StartDate":"2023-11-09","EndDate":"2024-11-08","BillingAddress":null,"ContractTerm":12,"OwnerId":"0056s000006SKknAAG","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000184","CreatedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:52.000+0000","LastViewedDate":"2023-11-09T20:07:53.000+0000","LastReferencedDate":"2023-11-09T20:07:53.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-11-08","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0066s00000CfE30AAF","SBQQ__Order__c":"8016s000001FXydAAG","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z6s0000016DwgAAE","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/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA"},"Id":"a0v6s000000tlejAAA","IsDeleted":false,"Name":"QL-0001705","CreatedDate":"2023-11-09T20:07:56.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:59.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:59.000+0000","SBQQ__Quote__c":"a0z6s0000016DwlAAE","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRfAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B6s000000xyMIEAY","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-11-08","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-05-09","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":720.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA"},"Id":"a0v6s000000tledAAA","IsDeleted":false,"Name":"QL-0001703","CreatedDate":"2023-11-09T20:07:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:38.000+0000","SBQQ__Quote__c":"a0z6s0000016DwgAAE","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":"01u6s000006MyRfAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","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-11-09","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-11-09 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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY"},"Id":"a1B6s000000xyMIEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"SUB-0000362","CreatedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:52.000+0000","SBQQ__Account__c":"0016s00000fzBrEAAU","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8006s0000008JkCAAU","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":"8026s0000014Mw2AAE","SBQQ__OriginalQuoteLine__c":"a0v6s000000tledAAA","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v6s000000tledAAA","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B6s000000xyMIEAY","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-11-09","SBQQ__ContractNumber__c":"00000184","SBQQ__EndDate__c":"2024-11-08","SBQQ__ProductId__c":"01t6s000004g3qt","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t6s000004g3qt","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t6s000004g3qtAAA"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8026s0000014Mw2AAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlejAAA","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000000506","SystemModstamp":"2023-11-09T20:08:01.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:08:00.000+0000","EndDate":"2024-11-08","ServiceDate":"2024-05-09","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRfAAK","OrderId":"8016s000001FXyiAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qtAAA","Id":"8026s0000014Mw7AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mw7AAE","type":"OrderItem"}},{"Contracts":["8006s0000008JkCAAU"],"PricebookEntries":[],"Products":["01t6s000004g3qtAAA"],"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":"a1B6s000000xyMIEAY","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":"a0v6s000000tledAAA","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":"8006s0000008JkCAAU","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000505","SystemModstamp":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:41.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRfAAK","OrderId":"8016s000001FXydAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qtAAA","Id":"8026s0000014Mw2AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mw2AAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF"},"Id":"0066s00000CfE30AAF","IsDeleted":false,"AccountId":"0016s00000fzBrEAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:33.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:33.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:07:32.000+0000","LastReferencedDate":"2023-11-09T20:07:32.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwgAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE35AAF"],"Accounts":["0016s00000fzBrEAAU"],"OrderItems":["8026s0000014Mw7AAE"],"Quotes":["a0z6s0000016DwlAAE"],"InitialOrderQuotes":["a0z6s0000016DwgAAE"],"InitialOrderId":["8016s000001FXydAAG"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z6s0000016DwgAAE","Id":"8006s0000008JkCAAU","attributes":{"url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU","type":"Contract"}},"SBQQ__AmendedContract__c":"8006s0000008JkCAAU","Id":"0066s00000CfE35AAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z6s0000016DwlAAE","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:31:13.000+0000","LastViewedDate":"2023-08-02T21:31:13.000+0000","SystemModstamp":"2023-08-02T21:31:12.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:10.000+0000","TotalAmount":720.00,"OrderNumber":"00001304","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:31:12.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-02-02","OpportunityId":"0067e00000NfEYiAAN","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7qAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEXEAA3"],"Accounts":["0017e00001iaMT1AAM"],"OrderItems":["8027e000001bQebAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Stripe_ID__c":"sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T20:08:02.000+0000","LastViewedDate":"2023-11-09T20:08:02.000+0000","SystemModstamp":"2023-11-09T20:08:01.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:08:00.000+0000","TotalAmount":720.00,"OrderNumber":"00000277","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:08:01.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-05-09","OpportunityId":"0066s00000CfE35AAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyiAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyiAAG","type":"Order"}},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE30AAF"],"Accounts":["0016s00000fzBrEAAU"],"OrderItems":["8026s0000014Mw2AAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA","Stripe_ID__c":"sub_sched_1OAeW2Isgf92XbAO9BXfkIPA","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z6s0000016DwgAAE","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:30:56.000+0000","LastViewedDate":"2023-08-02T21:30:56.000+0000","SystemModstamp":"2023-08-02T21:30:56.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:56.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:33.000+0000","TotalAmount":1440.00,"OrderNumber":"00001303","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:30:35.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEXEAA3","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7lAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-11-09T20:07:51.000+0000","LastViewedDate":"2023-11-09T20:07:51.000+0000","SystemModstamp":"2023-11-09T20:07:51.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:51.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:41.000+0000","TotalAmount":1440.00,"OrderNumber":"00000276","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:07:42.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE30AAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXydAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXydAAG","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 @@ -8686,10 +8924,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: Thu, 09 Nov 2023 20:08:03 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%278017e000000nR7qAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyiAAG%27%0A body: encoding: US-ASCII string: '' @@ -8708,12 +8946,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:15 GMT + - Thu, 09 Nov 2023 20:08:03 GMT Set-Cookie: - - BrowserId=6T5ZuzF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:15 + - BrowserId=sFZ9En87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8726,7 +8964,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13541/5000000 + - api-usage=640/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8735,11 +8973,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE"},"Type":"Amendment","OpportunityId":"0067e00000NfEYiAAN","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN"},"SBQQ__AmendedContract__c":"8007e000001iCJfAAM"}}]}' - 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/8016s000001FXyiAAG"},"Type":"Amendment","OpportunityId":"0066s00000CfE35AAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE35AAF"},"SBQQ__AmendedContract__c":"8006s0000008JkCAAU"}}]}' + recorded_at: Thu, 09 Nov 2023 20:08: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%278017e000000nR7qAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyiAAG%27%0A body: encoding: US-ASCII string: '' @@ -8758,12 +8996,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:16 GMT + - Thu, 09 Nov 2023 20:08:03 GMT Set-Cookie: - - BrowserId=6YN5GDF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:16 + - BrowserId=sGh96H87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8776,7 +9014,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13550/5000000 + - api-usage=638/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8785,11 +9023,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE"},"OpportunityId":"0067e00000NfEYiAAN","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN"},"SBQQ__AmendedContract__c":"8007e000001iCJfAAM","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM"},"SBQQ__Quote__c":"a0z7e00000BDKaiAAH"}}}]}' - 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/8016s000001FXyiAAG"},"OpportunityId":"0066s00000CfE35AAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE35AAF"},"SBQQ__AmendedContract__c":"8006s0000008JkCAAU","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8006s0000008JkCAAU"},"SBQQ__Quote__c":"a0z6s0000016DwgAAE"}}}]}' + recorded_at: Thu, 09 Nov 2023 20:08: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%27a0z7e00000BDKaiAAH%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DwgAAE%27%0A body: encoding: US-ASCII string: '' @@ -8808,12 +9046,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:16 GMT + - Thu, 09 Nov 2023 20:08:03 GMT Set-Cookie: - - BrowserId=6dCvEDF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:16 + - BrowserId=sHr0uX87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8826,7 +9064,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13542/5000000 + - api-usage=626/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8835,11 +9073,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE"}]}' - 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/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG"}]}' + recorded_at: Thu, 09 Nov 2023 20:08: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%278007e000001iCJfAAM%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%278006s0000008JkCAAU%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A body: encoding: US-ASCII string: '' @@ -8858,12 +9096,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:17 GMT + - Thu, 09 Nov 2023 20:08:03 GMT Set-Cookie: - - BrowserId=6hUK-zF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:17 + - BrowserId=sIhiT387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8876,7 +9114,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13547/5000000 + - api-usage=628/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8885,16 +9123,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE"},"Id":"8017e000000nR7qAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEYiAAN","EffectiveDate":"2024-02-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-02T21:31:12.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001304","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:31:10.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:12.000+0000","LastViewedDate":"2023-08-02T21:31:13.000+0000","LastReferencedDate":"2023-08-02T21:31:13.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/8016s000001FXyiAAG"},"Id":"8016s000001FXyiAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE35AAF","EffectiveDate":"2024-05-09","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-11-09T20:08:01.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000277","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:08:00.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:08:01.000+0000","LastViewedDate":"2023-11-09T20:08:02.000+0000","LastReferencedDate":"2023-11-09T20:08:02.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":"a0z7e00000BDKanAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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":"a0z6s0000016DwlAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:03 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR7qAAE"]}' + string: '{"order_ids":["8016s000001FXyiAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -8912,12 +9150,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:17 GMT + - Thu, 09 Nov 2023 20:08:03 GMT Set-Cookie: - - BrowserId=6lkY6jF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:17 + - BrowserId=sJjcrn87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8937,39 +9175,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN"},"Id":"0067e00000NfEYiAAN","IsDeleted":false,"AccountId":"0017e00001iaMT1AAM","IsPrivate":false,"Name":"Amendment - for contract #00000328","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:01.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:01.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:31:01.000+0000","LastReferencedDate":"2023-08-02T21:31:01.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCJfAAM","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKanAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMT1AAM"},"Id":"0017e00001iaMT1AAM","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:40.000+0000","LastViewedDate":"2023-08-02T21:30:40.000+0000","LastReferencedDate":"2023-08-02T21:30:40.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_ONXiFUgzHkZabO","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONXiFUgzHkZabO"},{"Accounts":["0017e00001iaMT1AAM"],"Opportunities":["0067e00000NfEYiAAN"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-02-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":"0067e00000NfEYiAAN","SBQQ__MasterContract__c":"8007e000001iCJfAAM","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:31:10.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-02T21:31:03.000+0000","SBQQ__EndDate__c":"2024-08-01","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF"},"Id":"0066s00000CfE35AAF","IsDeleted":false,"AccountId":"0016s00000fzBrEAAU","IsPrivate":false,"Name":"Amendment + for contract #00000184","StageName":"Prospecting","Probability":10,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:54.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:54.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:07:54.000+0000","LastReferencedDate":"2023-11-09T20:07:54.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8006s0000008JkCAAU","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwlAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBrEAAU"},"Id":"0016s00000fzBrEAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:45.000+0000","LastViewedDate":"2023-11-09T20:07:45.000+0000","LastReferencedDate":"2023-11-09T20:07:45.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_Oybjh147v6FUqZ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_Oybjh147v6FUqZ"},{"Accounts":["0016s00000fzBrEAAU"],"Opportunities":["0066s00000CfE35AAF"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-12-09","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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-05-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE35AAF","SBQQ__MasterContract__c":"8006s0000008JkCAAU","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T20:07:59.000+0000","SBQQ__LastCalculatedOn__c":"2023-11-09T20:07:56.000+0000","SBQQ__EndDate__c":"2024-11-08","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":"0017e00001iaMT1AAM","LastReferencedDate":"2023-08-02T21:31:10.000+0000","LastViewedDate":"2023-08-02T21:31:10.000+0000","SystemModstamp":"2023-08-02T21:31:10.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:10.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:01.000+0000","Name":"Q-01221","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKanAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKanAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7WAAS"},"Id":"01t7e000009As7WAAS","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:30:16.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:45.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-02T21:30:43.000+0000","LastReferencedDate":"2023-08-02T21:30:43.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBrEAAU","LastReferencedDate":"2023-11-09T20:07:59.000+0000","LastViewedDate":"2023-11-09T20:07:59.000+0000","SystemModstamp":"2023-11-09T20:07:59.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:59.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:54.000+0000","Name":"Q-00206","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DwlAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwlAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qtAAA"},"Id":"01t6s000004g3qtAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:47.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-11-09T20:07:46.000+0000","LastReferencedDate":"2023-11-09T20:07:46.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_ONXinYYMkbC0um","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXinYYMkbC0um"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjjEAAR"},"Id":"01u7e00000IsjjEAAR","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7WAAS","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:30:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:45.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:45.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NamcyIsgf92XbAOqBYiOvvD","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NamcyIsgf92XbAOqBYiOvvD"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM"},"Id":"8007e000001iCJfAAM","AccountId":"0017e00001iaMT1AAM","StartDate":"2023-08-02","EndDate":"2024-08-01","BillingAddress":null,"ContractTerm":12,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000328","CreatedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:58.000+0000","LastViewedDate":"2023-08-02T21:31:00.000+0000","LastReferencedDate":"2023-08-02T21:31:00.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":"0067e00000NfEXEAA3","SBQQ__Order__c":"8017e000000nR7lAAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","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/a0v7e000008xXsqAAE"},"Id":"a0v7e000008xXsqAAE","IsDeleted":false,"Name":"QL-0002633","CreatedDate":"2023-08-02T21:31:03.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:09.000+0000","SBQQ__Quote__c":"a0z7e00000BDKanAAH","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IsjjEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B7e00000EX4ynEAD","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-02-02","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RegularTotal__c":720.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/a0v7e000008xXorAAE"},"Id":"a0v7e000008xXorAAE","IsDeleted":false,"Name":"QL-0002631","CreatedDate":"2023-08-02T21:30:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:27.000+0000","SBQQ__Quote__c":"a0z7e00000BDKaiAAH","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":"01u7e00000IsjjEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","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/a1B7e00000EX4ynEAD"},"Id":"a1B7e00000EX4ynEAD","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000285","CreatedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:58.000+0000","SBQQ__Account__c":"0017e00001iaMT1AAM","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCJfAAM","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":"8027e000001bQebAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xXorAAE","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7WAAS","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xXorAAE","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX4ynEAD","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-02","SBQQ__ContractNumber__c":"00000328","SBQQ__EndDate__c":"2024-08-01","SBQQ__ProductId__c":"01t7e000009As7W","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009As7W","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009As7WAAS"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQebAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXsqAAE","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000001326","SystemModstamp":"2023-08-02T21:31:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:10.000+0000","EndDate":"2024-08-01","ServiceDate":"2024-02-02","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjjEAAR","OrderId":"8017e000000nR7qAAE","IsDeleted":false,"Product2Id":"01t7e000009As7WAAS","Id":"8027e000001bQegAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQegAAE","type":"OrderItem"}},{"Contracts":["8007e000001iCJfAAM"],"PricebookEntries":[],"Products":["01t7e000009As7WAAS"],"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":"a1B7e00000EX4ynEAD","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":"a0v7e000008xXorAAE","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":"8007e000001iCJfAAM","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001325","SystemModstamp":"2023-08-02T21:30:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:58.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:33.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":"01u7e00000IsjjEAAR","OrderId":"8017e000000nR7lAAE","IsDeleted":false,"Product2Id":"01t7e000009As7WAAS","Id":"8027e000001bQebAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQebAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEXEAA3"},"Id":"0067e00000NfEXEAA3","IsDeleted":false,"AccountId":"0017e00001iaMT1AAM","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:30:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:19.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:30:18.000+0000","LastReferencedDate":"2023-08-02T21:30:18.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKaiAAH","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":["0067e00000NfEYiAAN"],"Accounts":["0017e00001iaMT1AAM"],"OrderItems":["8027e000001bQegAAE"],"Quotes":["a0z7e00000BDKanAAH"],"InitialOrderQuotes":["a0z7e00000BDKaiAAH"],"InitialOrderId":["8017e000000nR7lAAE"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","Id":"8007e000001iCJfAAM","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJfAAM","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCJfAAM","Id":"0067e00000NfEYiAAN","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEYiAAN","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z7e00000BDKanAAH","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OybjBE4Pyp1i6N","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OybjBE4Pyp1i6N"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRfAAK"},"Id":"01u6s000006MyRfAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qtAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:46.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:46.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1OAeVyIsgf92XbAOaSCebWEJ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1OAeVyIsgf92XbAOaSCebWEJ"},{"attributes":{"type":"Contract","url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU"},"Id":"8006s0000008JkCAAU","AccountId":"0016s00000fzBrEAAU","StartDate":"2023-11-09","EndDate":"2024-11-08","BillingAddress":null,"ContractTerm":12,"OwnerId":"0056s000006SKknAAG","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000184","CreatedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:52.000+0000","LastViewedDate":"2023-11-09T20:07:53.000+0000","LastReferencedDate":"2023-11-09T20:07:53.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-11-08","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0066s00000CfE30AAF","SBQQ__Order__c":"8016s000001FXydAAG","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z6s0000016DwgAAE","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/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlejAAA"},"Id":"a0v6s000000tlejAAA","IsDeleted":false,"Name":"QL-0001705","CreatedDate":"2023-11-09T20:07:56.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:59.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:59.000+0000","SBQQ__Quote__c":"a0z6s0000016DwlAAE","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRfAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B6s000000xyMIEAY","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-11-08","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-05-09","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":720.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tledAAA"},"Id":"a0v6s000000tledAAA","IsDeleted":false,"Name":"QL-0001703","CreatedDate":"2023-11-09T20:07:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:38.000+0000","SBQQ__Quote__c":"a0z6s0000016DwgAAE","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":"01u6s000006MyRfAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","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-11-09","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-11-09 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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMIEAY"},"Id":"a1B6s000000xyMIEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"SUB-0000362","CreatedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:52.000+0000","SBQQ__Account__c":"0016s00000fzBrEAAU","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8006s0000008JkCAAU","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":"8026s0000014Mw2AAE","SBQQ__OriginalQuoteLine__c":"a0v6s000000tledAAA","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qtAAA","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v6s000000tledAAA","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B6s000000xyMIEAY","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-11-09","SBQQ__ContractNumber__c":"00000184","SBQQ__EndDate__c":"2024-11-08","SBQQ__ProductId__c":"01t6s000004g3qt","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t6s000004g3qt","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t6s000004g3qtAAA"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8026s0000014Mw2AAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlejAAA","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000000506","SystemModstamp":"2023-11-09T20:08:01.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:08:00.000+0000","EndDate":"2024-11-08","ServiceDate":"2024-05-09","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRfAAK","OrderId":"8016s000001FXyiAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qtAAA","Id":"8026s0000014Mw7AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mw7AAE","type":"OrderItem"}},{"Contracts":["8006s0000008JkCAAU"],"PricebookEntries":[],"Products":["01t6s000004g3qtAAA"],"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":"a1B6s000000xyMIEAY","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":"a0v6s000000tledAAA","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":"8006s0000008JkCAAU","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000505","SystemModstamp":"2023-11-09T20:07:52.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:52.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:41.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRfAAK","OrderId":"8016s000001FXydAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qtAAA","Id":"8026s0000014Mw2AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mw2AAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE30AAF"},"Id":"0066s00000CfE30AAF","IsDeleted":false,"AccountId":"0016s00000fzBrEAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:33.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:33.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:07:32.000+0000","LastReferencedDate":"2023-11-09T20:07:32.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwgAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE35AAF"],"Accounts":["0016s00000fzBrEAAU"],"OrderItems":["8026s0000014Mw7AAE"],"Quotes":["a0z6s0000016DwlAAE"],"InitialOrderQuotes":["a0z6s0000016DwgAAE"],"InitialOrderId":["8016s000001FXydAAG"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z6s0000016DwgAAE","Id":"8006s0000008JkCAAU","attributes":{"url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkCAAU","type":"Contract"}},"SBQQ__AmendedContract__c":"8006s0000008JkCAAU","Id":"0066s00000CfE35AAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE35AAF","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z6s0000016DwlAAE","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:31:13.000+0000","LastViewedDate":"2023-08-02T21:31:13.000+0000","SystemModstamp":"2023-08-02T21:31:12.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:12.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:10.000+0000","TotalAmount":720.00,"OrderNumber":"00001304","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:31:12.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-02-02","OpportunityId":"0067e00000NfEYiAAN","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7qAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEXEAA3"],"Accounts":["0017e00001iaMT1AAM"],"OrderItems":["8027e000001bQebAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Stripe_ID__c":"sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKaiAAH","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T20:08:02.000+0000","LastViewedDate":"2023-11-09T20:08:02.000+0000","SystemModstamp":"2023-11-09T20:08:01.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:08:01.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:08:00.000+0000","TotalAmount":720.00,"OrderNumber":"00000277","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:08:01.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-05-09","OpportunityId":"0066s00000CfE35AAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyiAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyiAAG","type":"Order"}},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE30AAF"],"Accounts":["0016s00000fzBrEAAU"],"OrderItems":["8026s0000014Mw2AAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA","Stripe_ID__c":"sub_sched_1OAeW2Isgf92XbAO9BXfkIPA","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z6s0000016DwgAAE","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:30:56.000+0000","LastViewedDate":"2023-08-02T21:30:56.000+0000","SystemModstamp":"2023-08-02T21:30:56.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:56.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:30:33.000+0000","TotalAmount":1440.00,"OrderNumber":"00001303","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:30:35.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEXEAA3","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMT1AAM","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7lAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-11-09T20:07:51.000+0000","LastViewedDate":"2023-11-09T20:07:51.000+0000","SystemModstamp":"2023-11-09T20:07:51.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:51.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:07:41.000+0000","TotalAmount":1440.00,"OrderNumber":"00000276","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:07:42.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE30AAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBrEAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXydAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXydAAG","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 @@ -8986,10 +9224,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: Thu, 09 Nov 2023 20:08: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%278017e000000nR7lAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXydAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -9008,12 +9246,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:19 GMT + - Thu, 09 Nov 2023 20:08:04 GMT Set-Cookie: - - BrowserId=6343qjF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:19 + - BrowserId=sUgI6n87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:04 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9026,7 +9264,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13544/5000000 + - api-usage=631/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9035,11 +9273,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE"}]}' - 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/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:04 GMT - request: method: get - uri: https://api.stripe.com/v1/subscriptions/sub_sched_1Namd8Isgf92XbAOGlPN9LCW + uri: https://api.stripe.com/v1/subscriptions/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA body: encoding: US-ASCII string: '' @@ -9051,13 +9289,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_PbhBiCCZGW44qc","request_duration_ms":240}}' + - '{"last_request_metrics":{"request_id":"req_Me7R2a2pPiMci3","request_duration_ms":222}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9072,7 +9310,7 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:19 GMT + - Thu, 09 Nov 2023 20:08:05 GMT Content-Type: - application/json Content-Length: @@ -9082,21 +9320,29 @@ http_interactions: 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscriptions%2F%3Asubscription_exposed_id; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_Z8HnHG3Y2r5bPP + - req_QqeLbJ33ZcX9an Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9108,16 +9354,16 @@ http_interactions: "error": { "code": "resource_missing", "doc_url": "https://stripe.com/docs/error-codes/resource-missing", - "message": "No such subscription: 'sub_sched_1Namd8Isgf92XbAOGlPN9LCW'", + "message": "No such subscription: 'sub_sched_1OAeW2Isgf92XbAO9BXfkIPA'", "param": "id", - "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_Z8HnHG3Y2r5bPP?t=1691011879", + "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_QqeLbJ33ZcX9an?t=1699560485", "type": "invalid_request_error" } } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:05 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA body: encoding: US-ASCII string: '' @@ -9129,13 +9375,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_PbhBiCCZGW44qc","request_duration_ms":240}}' + - '{"last_request_metrics":{"request_id":"req_Me7R2a2pPiMci3","request_duration_ms":222}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9150,31 +9396,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:20 GMT + - Thu, 09 Nov 2023 20:08:05 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_hg44oCM3Q0RKqO + - req_hR5OgAq3JquwDH Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9183,17 +9437,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -9212,8 +9466,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -9222,45 +9476,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -9270,13 +9524,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:05 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%278017e000000nR7qAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXyiAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -9295,12 +9549,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:21 GMT + - Thu, 09 Nov 2023 20:08:05 GMT Set-Cookie: - - BrowserId=7LIkejF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:21 + - BrowserId=sZTJlX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9313,7 +9567,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13559/5000000 + - api-usage=641/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9322,11 +9576,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE"},"Id":"8017e000000nR7qAAE"}]}' - 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/8016s000001FXyiAAG"},"Id":"8016s000001FXyiAAG"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:05 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: US-ASCII string: '' @@ -9345,12 +9599,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:22 GMT + - Thu, 09 Nov 2023 20:08:05 GMT Set-Cookie: - - BrowserId=7P022zF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:22 + - BrowserId=sZ_sgX87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9363,9 +9617,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13557/5000000 + - api-usage=626/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:56 GMT + - Thu, 09 Nov 2023 20:07:51 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -9374,13 +9628,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEXEAA3","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:30:35.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001303","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:30:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:30:56.000+0000","LastViewedDate":"2023-08-02T21:30:56.000+0000","LastReferencedDate":"2023-08-02T21:30:56.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE30AAF","EffectiveDate":"2023-11-09","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-11-09T20:07:42.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000276","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:07:41.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:51.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:07:51.000+0000","LastViewedDate":"2023-11-09T20:07:51.000+0000","LastReferencedDate":"2023-11-09T20:07:51.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":"a0z7e00000BDKaiAAH","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_1Namd8Isgf92XbAOGlPN9LCW","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Namd8Isgf92XbAOGlPN9LCW"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DwgAAE","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_1OAeW2Isgf92XbAO9BXfkIPA","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA"}' + recorded_at: Thu, 09 Nov 2023 20:08:05 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA body: encoding: US-ASCII string: '' @@ -9392,13 +9646,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_hg44oCM3Q0RKqO","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_hR5OgAq3JquwDH","request_duration_ms":206}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9413,31 +9667,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:22 GMT + - Thu, 09 Nov 2023 20:08:05 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_EckTO2DHA04AyU + - req_zRxVal5YdrGA7F Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9446,17 +9708,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -9475,8 +9737,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -9485,45 +9747,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -9533,13 +9795,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:05 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwgAAE body: encoding: US-ASCII string: '' @@ -9558,12 +9820,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:22 GMT + - Thu, 09 Nov 2023 20:08:05 GMT Set-Cookie: - - BrowserId=7WzB5zF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:22 + - BrowserId=sc4o2X87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9576,9 +9838,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13547/5000000 + - api-usage=629/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:32 GMT + - Thu, 09 Nov 2023 20:07:41 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -9587,15 +9849,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKaiAAH"},"Id":"a0z7e00000BDKaiAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01220","CreatedDate":"2023-08-02T21:30:19.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:32.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:32.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-02T21:30:32.000+0000","LastReferencedDate":"2023-08-02T21:30:32.000+0000","SBQQ__Account__c":"0017e00001iaMT1AAM","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:30:32.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":"0067e00000NfEXEAA3","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":"0037e00001jI87ZAAS","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/a0z6s0000016DwgAAE"},"Id":"a0z6s0000016DwgAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00205","CreatedDate":"2023-11-09T20:07:33.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:41.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:41.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T20:07:40.000+0000","LastReferencedDate":"2023-11-09T20:07:40.000+0000","SBQQ__Account__c":"0016s00000fzBrEAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T20:07:40.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":"0066s00000CfE30AAF","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":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY9BqAAL","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 20:08:05 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONXinYYMkbC0um + uri: https://api.stripe.com/v1/products/prod_OybjBE4Pyp1i6N body: encoding: US-ASCII string: '' @@ -9607,13 +9869,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_EckTO2DHA04AyU","request_duration_ms":198}}' + - '{"last_request_metrics":{"request_id":"req_zRxVal5YdrGA7F","request_duration_ms":203}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9628,31 +9890,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:23 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Content-Type: - application/json Content-Length: - - '748' + - '761' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_ZuROVsCHHgnF0X + - req_vZJWjhzbOYiDs6 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9661,36 +9930,37 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXinYYMkbC0um", + "id": "prod_OybjBE4Pyp1i6N", "object": "product", "active": true, "attributes": [], - "created": 1691011841, + "created": 1699560465, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7WAAS", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7WAAS" + "salesforce_product2_id": "01t6s000004g3qtAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qtAAA" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-70", + "sku": "rest-product2--2023-11-09-000000-utc-11", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691011841, + "updated": 1699560465, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08: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%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -9709,12 +9979,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:23 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Set-Cookie: - - BrowserId=7dVHFDF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:23 + - BrowserId=sgCqY387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9727,7 +9997,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13548/5000000 + - api-usage=639/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9737,10 +10007,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: Thu, 09 Nov 2023 20:08: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%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -9759,12 +10029,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:23 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Set-Cookie: - - BrowserId=7gzR2zF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:23 + - BrowserId=shBh_387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9777,7 +10047,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13562/5000000 + - api-usage=630/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9787,10 +10057,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: Thu, 09 Nov 2023 20:08: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%278027e000001bQebAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mw2AAE%27%0A body: encoding: US-ASCII string: '' @@ -9809,12 +10079,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:24 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Set-Cookie: - - BrowserId=7kjwpjF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:24 + - BrowserId=sh4dgH87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9827,7 +10097,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13563/5000000 + - api-usage=627/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9837,10 +10107,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: Thu, 09 Nov 2023 20:08: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%278027e000001bQebAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mw2AAE%27%0A body: encoding: US-ASCII string: '' @@ -9859,12 +10129,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:24 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Set-Cookie: - - BrowserId=7oGz3jF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:24 + - BrowserId=sis8s387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9877,7 +10147,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13544/5000000 + - api-usage=631/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9887,10 +10157,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: Thu, 09 Nov 2023 20:08:06 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamcyIsgf92XbAOqBYiOvvD?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1OAeVyIsgf92XbAOaSCebWEJ?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -9902,13 +10172,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ZuROVsCHHgnF0X","request_duration_ms":172}}' + - '{"last_request_metrics":{"request_id":"req_vZJWjhzbOYiDs6","request_duration_ms":211}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9923,31 +10193,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:25 GMT + - Thu, 09 Nov 2023 20:08:06 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_C3P8YUz1UkmVBA + - req_2Uo4acR7wXDTj4 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9956,21 +10233,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -9985,10 +10262,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08: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%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -10007,12 +10284,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:25 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Set-Cookie: - - BrowserId=7uRtqDF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:25 + - BrowserId=slhAJX87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10025,7 +10302,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13545/5000000 + - api-usage=632/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10035,10 +10312,60 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:06 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014Mw2AAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:08:06 GMT + Set-Cookie: + - BrowserId=smVfgX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=639/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ"},"Id":"a1N6s00000113iVEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:06 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bQebAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tledAAA%27 body: encoding: US-ASCII string: '' @@ -10057,12 +10384,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:25 GMT + - Thu, 09 Nov 2023 20:08:06 GMT Set-Cookie: - - BrowserId=7yEA1jF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:25 + - BrowserId=snqVl387Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10075,7 +10402,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13560/5000000 + - api-usage=635/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10084,11 +10411,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA"},"Id":"a1N7e000002fm33EAA"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk7iEAC"},"Id":"a1P6s000001Bk7iEAC"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:06 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ body: encoding: US-ASCII string: '' @@ -10107,12 +10434,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:26 GMT + - Thu, 09 Nov 2023 20:08:07 GMT Set-Cookie: - - BrowserId=73Kj2zF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:26 + - BrowserId=sowhm387Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10125,9 +10452,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13558/5000000 + - api-usage=628/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:47 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -10136,12 +10463,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA"},"Id":"a1N7e000002fm33EAA","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0146","CreatedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:47.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:47.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bQebAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFuwEAG","Stripe_ID__c":"35zEfirQ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/35zEfirQ"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ"},"Id":"a1N6s00000113iVEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0020","CreatedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:47.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014Mw2AAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJ6EAI","Stripe_ID__c":"4HuhZaSV","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/4HuhZaSV"}' + recorded_at: Thu, 09 Nov 2023 20:08:07 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFuwEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ6EAI body: encoding: US-ASCII string: '' @@ -10160,12 +10487,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:26 GMT + - Thu, 09 Nov 2023 20:08:07 GMT Set-Cookie: - - BrowserId=77XHmTF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:26 + - BrowserId=splBLn87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10178,9 +10505,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13559/5000000 + - api-usage=636/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:50 GMT + - Thu, 09 Nov 2023 20:07:48 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -10189,12 +10516,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFuwEAG"},"Id":"a1R7e000007JFuwEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0125","CreatedDate":"2023-08-02T21:30:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:50.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Percent_Off__c":25.0,"Stripe_ID__c":"35zEfirQ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/35zEfirQ"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ6EAI"},"Id":"a1R6s000000uvJ6EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0017","CreatedDate":"2023-11-09T20:07:40.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:48.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:48.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Percent_Off__c":25.0,"Stripe_ID__c":"4HuhZaSV","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/4HuhZaSV"}' + recorded_at: Thu, 09 Nov 2023 20:08:07 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/35zEfirQ + uri: https://api.stripe.com/v1/coupons/4HuhZaSV body: encoding: US-ASCII string: '' @@ -10206,13 +10533,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_C3P8YUz1UkmVBA","request_duration_ms":258}}' + - '{"last_request_metrics":{"request_id":"req_2Uo4acR7wXDTj4","request_duration_ms":190}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10227,31 +10554,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:26 GMT + - Thu, 09 Nov 2023 20:08:07 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_nqGmWaEYaTOMob + - req_1lhC3NxM2Cuy7h Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10260,18 +10594,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "35zEfirQ", + "id": "4HuhZaSV", "object": "coupon", "amount_off": null, - "created": 1691011847, + "created": 1699560467, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm33EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm33EAA" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iVEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iVEAQ" }, "name": "25% off coupon", "percent_off": 25.0, @@ -10279,13 +10613,13 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:07 GMT - request: method: post - uri: https://api.stripe.com/v1/coupons/35zEfirQ + uri: https://api.stripe.com/v1/coupons/4HuhZaSV body: encoding: UTF-8 - string: metadata[salesforce_quote_stripe_coupon_id]=a1R7e000007JFuwEAG&metadata[salesforce_quote_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1R7e000007JFuwEAG + string: metadata[salesforce_quote_stripe_coupon_id]=a1R6s000000uvJ6EAI&metadata[salesforce_quote_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1R6s000000uvJ6EAI headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -10294,15 +10628,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_nqGmWaEYaTOMob","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_1lhC3NxM2Cuy7h","request_duration_ms":198}}' Idempotency-Key: - - 66a2c26b-e64a-4fee-bfeb-d2a6277265be + - bc3ebe32-16c4-4230-b2b5-71f26082c565 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10317,37 +10651,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:27 GMT + - Thu, 09 Nov 2023 20:08:07 GMT Content-Type: - application/json Content-Length: - - '729' + - '719' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 66a2c26b-e64a-4fee-bfeb-d2a6277265be + - bc3ebe32-16c4-4230-b2b5-71f26082c565 Original-Request: - - req_jPzOrM3SKW462Q + - req_5NQIaoJvlhcgMD Request-Id: - - req_jPzOrM3SKW462Q + - req_5NQIaoJvlhcgMD 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: @@ -10356,20 +10697,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "35zEfirQ", + "id": "4HuhZaSV", "object": "coupon", "amount_off": null, - "created": 1691011847, + "created": 1699560467, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm33EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm33EAA", - "salesforce_quote_stripe_coupon_id": "a1R7e000007JFuwEAG", - "salesforce_quote_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1R7e000007JFuwEAG" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iVEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iVEAQ", + "salesforce_quote_stripe_coupon_id": "a1R6s000000uvJ6EAI", + "salesforce_quote_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1R6s000000uvJ6EAI" }, "name": "25% off coupon", "percent_off": 25.0, @@ -10377,10 +10718,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:07 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamcyIsgf92XbAOqBYiOvvD + uri: https://api.stripe.com/v1/prices/price_1OAeVyIsgf92XbAOaSCebWEJ body: encoding: US-ASCII string: '' @@ -10392,13 +10733,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_jPzOrM3SKW462Q","request_duration_ms":291}}' + - '{"last_request_metrics":{"request_id":"req_5NQIaoJvlhcgMD","request_duration_ms":244}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10413,31 +10754,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:27 GMT + - Thu, 09 Nov 2023 20:08:07 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_iyGTVmFDm14P0C + - req_XeE9wQXkPOLVVl Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10446,21 +10794,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10475,10 +10823,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:07 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONXinYYMkbC0um + uri: https://api.stripe.com/v1/products/prod_OybjBE4Pyp1i6N body: encoding: US-ASCII string: '' @@ -10490,13 +10838,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_iyGTVmFDm14P0C","request_duration_ms":196}}' + - '{"last_request_metrics":{"request_id":"req_XeE9wQXkPOLVVl","request_duration_ms":189}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10511,31 +10859,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:27 GMT + - Thu, 09 Nov 2023 20:08:07 GMT Content-Type: - application/json Content-Length: - - '748' + - '761' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_6mJYDTpIzhkNmw + - req_ItKXxLxTbchgCN Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10544,36 +10899,37 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXinYYMkbC0um", + "id": "prod_OybjBE4Pyp1i6N", "object": "product", "active": true, "attributes": [], - "created": 1691011841, + "created": 1699560465, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7WAAS", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7WAAS" + "salesforce_product2_id": "01t6s000004g3qtAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qtAAA" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-70", + "sku": "rest-product2--2023-11-09-000000-utc-11", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691011841, + "updated": 1699560465, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08: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%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -10592,12 +10948,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:28 GMT + - Thu, 09 Nov 2023 20:08:08 GMT Set-Cookie: - - BrowserId=8HeQLjF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:28 + - BrowserId=sycB5X87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10610,7 +10966,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13564/5000000 + - api-usage=640/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10620,10 +10976,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: Thu, 09 Nov 2023 20:08: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%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278027e000001bQegAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mw7AAE%27%0A body: encoding: US-ASCII string: '' @@ -10642,12 +10998,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:28 GMT + - Thu, 09 Nov 2023 20:08:08 GMT Set-Cookie: - - BrowserId=8LQj5zF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:28 + - BrowserId=szMQMH87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10660,7 +11016,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13546/5000000 + - api-usage=631/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10670,10 +11026,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: Thu, 09 Nov 2023 20:08:08 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamcyIsgf92XbAOqBYiOvvD?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1OAeVyIsgf92XbAOaSCebWEJ?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -10685,13 +11041,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_6mJYDTpIzhkNmw","request_duration_ms":253}}' + - '{"last_request_metrics":{"request_id":"req_ItKXxLxTbchgCN","request_duration_ms":190}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10706,31 +11062,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:28 GMT + - Thu, 09 Nov 2023 20:08: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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_qsxyvYD8fkQq4p + - req_K9sZv6JdcwrFoV Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10739,21 +11102,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10768,10 +11131,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08: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%2701t7e000009As7WAAS%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qtAAA%27%0A body: encoding: US-ASCII string: '' @@ -10790,12 +11153,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:29 GMT + - Thu, 09 Nov 2023 20:08:08 GMT Set-Cookie: - - BrowserId=8RXMdTF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:29 + - BrowserId=s14Xrn87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10808,7 +11171,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13549/5000000 + - api-usage=629/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10818,10 +11181,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: Thu, 09 Nov 2023 20:08:08 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bQegAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014Mw7AAE%27 body: encoding: US-ASCII string: '' @@ -10840,12 +11203,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:29 GMT + - Thu, 09 Nov 2023 20:08:08 GMT Set-Cookie: - - BrowserId=8VO_mjF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:29 + - BrowserId=s2pMC387Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10858,7 +11221,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13547/5000000 + - api-usage=642/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10868,10 +11231,60 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:08 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamcyIsgf92XbAOqBYiOvvD?expand%5B%5D=tiers + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlejAAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:08:08 GMT + Set-Cookie: + - BrowserId=s3b2lH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:08 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=627/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: Thu, 09 Nov 2023 20:08:08 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAeVyIsgf92XbAOaSCebWEJ?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -10883,13 +11296,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_qsxyvYD8fkQq4p","request_duration_ms":256}}' + - '{"last_request_metrics":{"request_id":"req_K9sZv6JdcwrFoV","request_duration_ms":190}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10904,31 +11317,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:29 GMT + - Thu, 09 Nov 2023 20:08: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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_H5NCGVAwESgEDg + - req_3EQcpPOnZUxqjn Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10937,21 +11357,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10966,13 +11386,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:08 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_pricebook_entry_id]=01u7e00000IsjjEAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000IsjjEAAR&metadata[salesforce_duplicate]=true&metadata[salesforce_auto_archive]=true&metadata[salesforce_original_stripe_price_id]=price_1NamcyIsgf92XbAOqBYiOvvD&product=prod_ONXinYYMkbC0um&recurring[interval]=month&recurring[interval_count]=1&recurring[usage_type]=licensed&tax_behavior=unspecified&unit_amount_decimal=12000 + string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRfAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRfAAK&metadata[salesforce_duplicate]=true&metadata[salesforce_auto_archive]=true&metadata[salesforce_original_stripe_price_id]=price_1OAeVyIsgf92XbAOaSCebWEJ&product=prod_OybjBE4Pyp1i6N&recurring[interval]=month&recurring[interval_count]=1&recurring[usage_type]=licensed&tax_behavior=unspecified&unit_amount_decimal=12000 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -10981,15 +11401,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_H5NCGVAwESgEDg","request_duration_ms":297}}' + - '{"last_request_metrics":{"request_id":"req_3EQcpPOnZUxqjn","request_duration_ms":190}}' Idempotency-Key: - - 415e0f69-c398-4b4f-a4f3-b4df23db1463 + - 4909fd2a-6eaf-46b6-b040-d03c4db64a04 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11004,37 +11424,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:30 GMT + - Thu, 09 Nov 2023 20:08:09 GMT Content-Type: - application/json Content-Length: - - '974' + - '969' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 415e0f69-c398-4b4f-a4f3-b4df23db1463 + - 4909fd2a-6eaf-46b6-b040-d03c4db64a04 Original-Request: - - req_KGwg2qk4BtFsyB + - req_EVGAm69EhXoyyW Request-Id: - - req_KGwg2qk4BtFsyB + - req_EVGAm69EhXoyyW 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: @@ -11043,11 +11470,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamdhIsgf92XbAO3Au7K48z", + "id": "price_1OAeWKIsgf92XbAOdNHcCgAt", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011889, + "created": 1699560488, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -11055,12 +11482,12 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_original_stripe_price_id": "price_1NamcyIsgf92XbAOqBYiOvvD", - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_original_stripe_price_id": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -11075,10 +11502,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:09 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NamcyIsgf92XbAOqBYiOvvD + uri: https://api.stripe.com/v1/prices/price_1OAeVyIsgf92XbAOaSCebWEJ body: encoding: US-ASCII string: '' @@ -11090,13 +11517,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_KGwg2qk4BtFsyB","request_duration_ms":239}}' + - '{"last_request_metrics":{"request_id":"req_EVGAm69EhXoyyW","request_duration_ms":250}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11111,31 +11538,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:30 GMT + - Thu, 09 Nov 2023 20:08:09 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_pgLZrf9uOBIhSI + - req_niipDNB1Qbig06 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11144,21 +11578,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -11173,10 +11607,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:09 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXiFUgzHkZabO?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oybjh147v6FUqZ?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -11188,13 +11622,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pgLZrf9uOBIhSI","request_duration_ms":245}}' + - '{"last_request_metrics":{"request_id":"req_niipDNB1Qbig06","request_duration_ms":188}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11209,31 +11643,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:30 GMT + - Thu, 09 Nov 2023 20:08:09 GMT Content-Type: - application/json Content-Length: - - '850' + - '845' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_fDUgQxI6a3UkkL + - req_nl1Rm3zMfzZLEy Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11242,11 +11684,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXiFUgzHkZabO", + "id": "cus_Oybjh147v6FUqZ", "object": "customer", "address": null, "balance": 0, - "created": 1691011840, + "created": 1699560464, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -11254,7 +11696,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "29787442", + "invoice_prefix": "BB5D090F", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -11263,10 +11705,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMT1AAM", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMT1AAM" + "salesforce_account_id": "0016s00000fzBrEAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBrEAAU" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -11274,10 +11716,10 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:09 GMT - request: method: get - uri: https://api.stripe.com/v1/invoices/upcoming?subscription=sub_1Namd8Isgf92XbAOZDe1lx3c + uri: https://api.stripe.com/v1/invoices/upcoming?subscription=sub_1OAeW2Isgf92XbAOfUFmoM2Q body: encoding: US-ASCII string: '' @@ -11289,13 +11731,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fDUgQxI6a3UkkL","request_duration_ms":177}}' + - '{"last_request_metrics":{"request_id":"req_nl1Rm3zMfzZLEy","request_duration_ms":198}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11310,31 +11752,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:30 GMT + - Thu, 09 Nov 2023 20:08:09 GMT Content-Type: - application/json Content-Length: - - '5515' + - '5720' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Finvoices%2Fupcoming; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_oYHTlXCaLeiu02 + - req_AeUe9ANYbdADrl Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11342,11 +11791,11 @@ http_interactions: body: encoding: ASCII-8BIT string: !binary |- - ewogICJvYmplY3QiOiAiaW52b2ljZSIsCiAgImFjY291bnRfY291bnRyeSI6ICJVUyIsCiAgImFjY291bnRfbmFtZSI6ICJTdHJpcGVGb3JjZSBEZW1vIEFjY291bnQgIiwKICAiYWNjb3VudF90YXhfaWRzIjogbnVsbCwKICAiYW1vdW50X2R1ZSI6IDEyMDAwLAogICJhbW91bnRfcGFpZCI6IDAsCiAgImFtb3VudF9yZW1haW5pbmciOiAxMjAwMCwKICAiYW1vdW50X3NoaXBwaW5nIjogMCwKICAiYXBwbGljYXRpb24iOiAiY2FfS0hvTEpHcml0a1F5OUJpc2MxRDVPNVlnbHFmV3M1YmkiLAogICJhcHBsaWNhdGlvbl9mZWVfYW1vdW50IjogbnVsbCwKICAiYXR0ZW1wdF9jb3VudCI6IDAsCiAgImF0dGVtcHRlZCI6IGZhbHNlLAogICJhdXRvbWF0aWNfdGF4IjogewogICAgImVuYWJsZWQiOiBmYWxzZSwKICAgICJzdGF0dXMiOiBudWxsCiAgfSwKICAiYmlsbGluZ19yZWFzb24iOiAidXBjb21pbmciLAogICJjaGFyZ2UiOiBudWxsLAogICJjb2xsZWN0aW9uX21ldGhvZCI6ICJjaGFyZ2VfYXV0b21hdGljYWxseSIsCiAgImNyZWF0ZWQiOiAxNjkzNjEyODAwLAogICJjdXJyZW5jeSI6ICJ1c2QiLAogICJjdXN0b21fZmllbGRzIjogbnVsbCwKICAiY3VzdG9tZXIiOiAiY3VzX09OWGlGVWd6SGtaYWJPIiwKICAiY3VzdG9tZXJfYWRkcmVzcyI6IG51bGwsCiAgImN1c3RvbWVyX2VtYWlsIjogbnVsbCwKICAiY3VzdG9tZXJfbmFtZSI6ICJSRVNUIEFjY291bnQgIDIwMjMtMDgtMDIgMDA6MDA6MDAgVVRDIiwKICAiY3VzdG9tZXJfcGhvbmUiOiBudWxsLAogICJjdXN0b21lcl9zaGlwcGluZyI6IG51bGwsCiAgImN1c3RvbWVyX3RheF9leGVtcHQiOiAibm9uZSIsCiAgImN1c3RvbWVyX3RheF9pZHMiOiBbXSwKICAiZGVmYXVsdF9wYXltZW50X21ldGhvZCI6IG51bGwsCiAgImRlZmF1bHRfc291cmNlIjogbnVsbCwKICAiZGVmYXVsdF90YXhfcmF0ZXMiOiBbXSwKICAiZGVzY3JpcHRpb24iOiBudWxsLAogICJkaXNjb3VudCI6IG51bGwsCiAgImRpc2NvdW50cyI6IFtdLAogICJkdWVfZGF0ZSI6IG51bGwsCiAgImVmZmVjdGl2ZV9hdCI6IG51bGwsCiAgImVuZGluZ19iYWxhbmNlIjogMCwKICAiZm9vdGVyIjogbnVsbCwKICAiZnJvbV9pbnZvaWNlIjogbnVsbCwKICAibGFzdF9maW5hbGl6YXRpb25fZXJyb3IiOiBudWxsLAogICJsYXRlc3RfcmV2aXNpb24iOiBudWxsLAogICJsaW5lcyI6IHsKICAgICJvYmplY3QiOiAibGlzdCIsCiAgICAiZGF0YSI6IFsKICAgICAgewogICAgICAgICJpZCI6ICJpbF90bXBfMTE1NWVjSXNnZjkyWGJBT2M1YjAzODJkIiwKICAgICAgICAib2JqZWN0IjogImxpbmVfaXRlbSIsCiAgICAgICAgImFtb3VudCI6IDEyMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDEyMDAwLAogICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICIxIMOXIFJFU1QgUHJvZHVjdDIgIDIwMjMtMDgtMDIgMDA6MDA6MDAgVVRDIChhdCAkMTIwLjAwIC8gbW9udGgpIiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE3ZTAwMDAwMG5SN2xBQUUiLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL2FiaWxpdHktaW5ub3ZhdGlvbi03MzM1LWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMTdlMDAwMDAwblI3bEFBRSIKICAgICAgICB9LAogICAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgICAiZW5kIjogMTY5NjIwNDgwMCwKICAgICAgICAgICJzdGFydCI6IDE2OTM2MTI4MDAKICAgICAgICB9LAogICAgICAgICJwbGFuIjogewogICAgICAgICAgImlkIjogInByaWNlXzFOYW1jeUlzZ2Y5MlhiQU9xQllpT3Z2RCIsCiAgICAgICAgICAib2JqZWN0IjogInBsYW4iLAogICAgICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJhbW91bnQiOiAxMjAwMCwKICAgICAgICAgICJhbW91bnRfZGVjaW1hbCI6ICIxMjAwMCIsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjkxMDExODQ0LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiaW50ZXJ2YWwiOiAibW9udGgiLAogICAgICAgICAgImludGVydmFsX2NvdW50IjogMSwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9wcmljZWJvb2tfZW50cnlfaWQiOiAiMDF1N2UwMDAwMElzampFQUFSIiwKICAgICAgICAgICAgInNhbGVzZm9yY2VfcHJpY2Vib29rX2VudHJ5X2xpbmsiOiAiaHR0cHM6Ly9hYmlsaXR5LWlubm92YXRpb24tNzMzNS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS8wMXU3ZTAwMDAwSXNqakVBQVIiCiAgICAgICAgICB9LAogICAgICAgICAgIm5pY2tuYW1lIjogbnVsbCwKICAgICAgICAgICJwcm9kdWN0IjogInByb2RfT05YaW5ZWU1rYkMwdW0iLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV91c2FnZSI6IG51bGwsCiAgICAgICAgICAidHJpYWxfcGVyaW9kX2RheXMiOiBudWxsLAogICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgfSwKICAgICAgICAicHJpY2UiOiB7CiAgICAgICAgICAiaWQiOiAicHJpY2VfMU5hbWN5SXNnZjkyWGJBT3FCWWlPdnZEIiwKICAgICAgICAgICJvYmplY3QiOiAicHJpY2UiLAogICAgICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjkxMDExODQ0LAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiY3VzdG9tX3VuaXRfYW1vdW50IjogbnVsbCwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgImxvb2t1cF9rZXkiOiBudWxsLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9wcmljZWJvb2tfZW50cnlfaWQiOiAiMDF1N2UwMDAwMElzampFQUFSIiwKICAgICAgICAgICAgInNhbGVzZm9yY2VfcHJpY2Vib29rX2VudHJ5X2xpbmsiOiAiaHR0cHM6Ly9hYmlsaXR5LWlubm92YXRpb24tNzMzNS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS8wMXU3ZTAwMDAwSXNqakVBQVIiCiAgICAgICAgICB9LAogICAgICAgICAgIm5pY2tuYW1lIjogbnVsbCwKICAgICAgICAgICJwcm9kdWN0IjogInByb2RfT05YaW5ZWU1rYkMwdW0iLAogICAgICAgICAgInJlY3VycmluZyI6IHsKICAgICAgICAgICAgImFnZ3JlZ2F0ZV91c2FnZSI6IG51bGwsCiAgICAgICAgICAgICJpbnRlcnZhbCI6ICJtb250aCIsCiAgICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAgICJ1c2FnZV90eXBlIjogImxpY2Vuc2VkIgogICAgICAgICAgfSwKICAgICAgICAgICJ0YXhfYmVoYXZpb3IiOiAidW5zcGVjaWZpZWQiLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV9xdWFudGl0eSI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJyZWN1cnJpbmciLAogICAgICAgICAgInVuaXRfYW1vdW50IjogMTIwMDAsCiAgICAgICAgICAidW5pdF9hbW91bnRfZGVjaW1hbCI6ICIxMjAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFOYW1kOElzZ2Y5MlhiQU9aRGUxbHgzYyIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX09OWGlaa1BUNzgxN1YxIiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIxMjAwMCIKICAgICAgfQogICAgXSwKICAgICJoYXNfbW9yZSI6IGZhbHNlLAogICAgInRvdGFsX2NvdW50IjogMSwKICAgICJ1cmwiOiAiL3YxL2ludm9pY2VzL3VwY29taW5nL2xpbmVzP3N1YnNjcmlwdGlvbj1zdWJfMU5hbWQ4SXNnZjkyWGJBT1pEZTFseDNjIgogIH0sCiAgImxpdmVtb2RlIjogZmFsc2UsCiAgIm1ldGFkYXRhIjoge30sCiAgIm5leHRfcGF5bWVudF9hdHRlbXB0IjogMTY5MzYxNjQwMCwKICAibnVtYmVyIjogbnVsbCwKICAib25fYmVoYWxmX29mIjogbnVsbCwKICAicGFpZCI6IGZhbHNlLAogICJwYWlkX291dF9vZl9iYW5kIjogZmFsc2UsCiAgInBheW1lbnRfaW50ZW50IjogbnVsbCwKICAicGF5bWVudF9zZXR0aW5ncyI6IHsKICAgICJkZWZhdWx0X21hbmRhdGUiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX29wdGlvbnMiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX3R5cGVzIjogbnVsbAogIH0sCiAgInBlcmlvZF9lbmQiOiAxNjkzNjEyODAwLAogICJwZXJpb2Rfc3RhcnQiOiAxNjkxMDExODU0LAogICJwb3N0X3BheW1lbnRfY3JlZGl0X25vdGVzX2Ftb3VudCI6IDAsCiAgInByZV9wYXltZW50X2NyZWRpdF9ub3Rlc19hbW91bnQiOiAwLAogICJxdW90ZSI6IG51bGwsCiAgInJlY2VpcHRfbnVtYmVyIjogbnVsbCwKICAicmVuZGVyaW5nIjogbnVsbCwKICAicmVuZGVyaW5nX29wdGlvbnMiOiBudWxsLAogICJzaGlwcGluZ19jb3N0IjogbnVsbCwKICAic2hpcHBpbmdfZGV0YWlscyI6IG51bGwsCiAgInN0YXJ0aW5nX2JhbGFuY2UiOiAwLAogICJzdGF0ZW1lbnRfZGVzY3JpcHRvciI6IG51bGwsCiAgInN0YXR1cyI6ICJkcmFmdCIsCiAgInN0YXR1c190cmFuc2l0aW9ucyI6IHsKICAgICJmaW5hbGl6ZWRfYXQiOiBudWxsLAogICAgIm1hcmtlZF91bmNvbGxlY3RpYmxlX2F0IjogbnVsbCwKICAgICJwYWlkX2F0IjogbnVsbCwKICAgICJ2b2lkZWRfYXQiOiBudWxsCiAgfSwKICAic3Vic2NyaXB0aW9uIjogInN1Yl8xTmFtZDhJc2dmOTJYYkFPWkRlMWx4M2MiLAogICJzdWJ0b3RhbCI6IDEyMDAwLAogICJzdWJ0b3RhbF9leGNsdWRpbmdfdGF4IjogMTIwMDAsCiAgInRheCI6IG51bGwsCiAgInRlc3RfY2xvY2siOiBudWxsLAogICJ0b3RhbCI6IDEyMDAwLAogICJ0b3RhbF9kaXNjb3VudF9hbW91bnRzIjogW10sCiAgInRvdGFsX2V4Y2x1ZGluZ190YXgiOiAxMjAwMCwKICAidG90YWxfdGF4X2Ftb3VudHMiOiBbXSwKICAidHJhbnNmZXJfZGF0YSI6IG51bGwsCiAgIndlYmhvb2tzX2RlbGl2ZXJlZF9hdCI6IG51bGwKfQ== - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + ewogICJvYmplY3QiOiAiaW52b2ljZSIsCiAgImFjY291bnRfY291bnRyeSI6ICJVUyIsCiAgImFjY291bnRfbmFtZSI6ICJTdHJpcGVGb3JjZSBEZW1vIEFjY291bnQgIiwKICAiYWNjb3VudF90YXhfaWRzIjogbnVsbCwKICAiYW1vdW50X2R1ZSI6IDEyMDAwLAogICJhbW91bnRfcGFpZCI6IDAsCiAgImFtb3VudF9yZW1haW5pbmciOiAxMjAwMCwKICAiYW1vdW50X3NoaXBwaW5nIjogMCwKICAiYXBwbGljYXRpb24iOiAiY2FfS0hvTEpHcml0a1F5OUJpc2MxRDVPNVlnbHFmV3M1YmkiLAogICJhcHBsaWNhdGlvbl9mZWVfYW1vdW50IjogbnVsbCwKICAiYXR0ZW1wdF9jb3VudCI6IDAsCiAgImF0dGVtcHRlZCI6IGZhbHNlLAogICJhdXRvbWF0aWNfdGF4IjogewogICAgImVuYWJsZWQiOiBmYWxzZSwKICAgICJzdGF0dXMiOiBudWxsCiAgfSwKICAiYmlsbGluZ19yZWFzb24iOiAidXBjb21pbmciLAogICJjaGFyZ2UiOiBudWxsLAogICJjb2xsZWN0aW9uX21ldGhvZCI6ICJjaGFyZ2VfYXV0b21hdGljYWxseSIsCiAgImNyZWF0ZWQiOiAxNzAyMDgwMDAwLAogICJjdXJyZW5jeSI6ICJ1c2QiLAogICJjdXN0b21fZmllbGRzIjogbnVsbCwKICAiY3VzdG9tZXIiOiAiY3VzX095YmpoMTQ3djZGVXFaIiwKICAiY3VzdG9tZXJfYWRkcmVzcyI6IG51bGwsCiAgImN1c3RvbWVyX2VtYWlsIjogbnVsbCwKICAiY3VzdG9tZXJfbmFtZSI6ICJSRVNUIEFjY291bnQgIDIwMjMtMTEtMDkgMDA6MDA6MDAgVVRDIiwKICAiY3VzdG9tZXJfcGhvbmUiOiBudWxsLAogICJjdXN0b21lcl9zaGlwcGluZyI6IG51bGwsCiAgImN1c3RvbWVyX3RheF9leGVtcHQiOiAibm9uZSIsCiAgImN1c3RvbWVyX3RheF9pZHMiOiBbXSwKICAiZGVmYXVsdF9wYXltZW50X21ldGhvZCI6IG51bGwsCiAgImRlZmF1bHRfc291cmNlIjogbnVsbCwKICAiZGVmYXVsdF90YXhfcmF0ZXMiOiBbXSwKICAiZGVzY3JpcHRpb24iOiBudWxsLAogICJkaXNjb3VudCI6IG51bGwsCiAgImRpc2NvdW50cyI6IFtdLAogICJkdWVfZGF0ZSI6IG51bGwsCiAgImVmZmVjdGl2ZV9hdCI6IG51bGwsCiAgImVuZGluZ19iYWxhbmNlIjogMCwKICAiZm9vdGVyIjogbnVsbCwKICAiZnJvbV9pbnZvaWNlIjogbnVsbCwKICAibGFzdF9maW5hbGl6YXRpb25fZXJyb3IiOiBudWxsLAogICJsYXRlc3RfcmV2aXNpb24iOiBudWxsLAogICJsaW5lcyI6IHsKICAgICJvYmplY3QiOiAibGlzdCIsCiAgICAiZGF0YSI6IFsKICAgICAgewogICAgICAgICJpZCI6ICJpbF90bXBfMWVhNmZmSXNnZjkyWGJBTzg5ZWM1MzhiIiwKICAgICAgICAib2JqZWN0IjogImxpbmVfaXRlbSIsCiAgICAgICAgImFtb3VudCI6IDEyMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDEyMDAwLAogICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICIxIMOXIFJFU1QgUHJvZHVjdDIgIDIwMjMtMTEtMDkgMDA6MDA6MDAgVVRDIChhdCAkMTIwLjAwIC8gbW9udGgpIiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE2czAwMDAwMUZYeWRBQUciLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL2Nvbm5lY3Qtc2Fhcy04OTgyMi1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE2czAwMDAwMUZYeWRBQUciCiAgICAgICAgfSwKICAgICAgICAicGVyaW9kIjogewogICAgICAgICAgImVuZCI6IDE3MDQ3NTg0MDAsCiAgICAgICAgICAic3RhcnQiOiAxNzAyMDgwMDAwCiAgICAgICAgfSwKICAgICAgICAicGxhbiI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xT0FlVnlJc2dmOTJYYkFPYVNDZWJXRUoiLAogICAgICAgICAgIm9iamVjdCI6ICJwbGFuIiwKICAgICAgICAgICJhY3RpdmUiOiB0cnVlLAogICAgICAgICAgImFnZ3JlZ2F0ZV91c2FnZSI6IG51bGwsCiAgICAgICAgICAiYW1vdW50IjogMTIwMDAsCiAgICAgICAgICAiYW1vdW50X2RlY2ltYWwiOiAiMTIwMDAiLAogICAgICAgICAgImJpbGxpbmdfc2NoZW1lIjogInBlcl91bml0IiwKICAgICAgICAgICJjcmVhdGVkIjogMTY5OTU2MDQ2NiwKICAgICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgInNhbGVzZm9yY2VfcHJpY2Vib29rX2VudHJ5X2lkIjogIjAxdTZzMDAwMDA2TXlSZkFBSyIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX3ByaWNlYm9va19lbnRyeV9saW5rIjogImh0dHBzOi8vY29ubmVjdC1zYWFzLTg5ODIyLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzAxdTZzMDAwMDA2TXlSZkFBSyIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PeWJqQkU0UHlwMWk2TiIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAidXNhZ2VfdHlwZSI6ICJsaWNlbnNlZCIKICAgICAgICB9LAogICAgICAgICJwcmljZSI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xT0FlVnlJc2dmOTJYYkFPYVNDZWJXRUoiLAogICAgICAgICAgIm9iamVjdCI6ICJwcmljZSIsCiAgICAgICAgICAiYWN0aXZlIjogdHJ1ZSwKICAgICAgICAgICJiaWxsaW5nX3NjaGVtZSI6ICJwZXJfdW5pdCIsCiAgICAgICAgICAiY3JlYXRlZCI6IDE2OTk1NjA0NjYsCiAgICAgICAgICAiY3VycmVuY3kiOiAidXNkIiwKICAgICAgICAgICJjdXN0b21fdW5pdF9hbW91bnQiOiBudWxsLAogICAgICAgICAgImxpdmVtb2RlIjogZmFsc2UsCiAgICAgICAgICAibG9va3VwX2tleSI6IG51bGwsCiAgICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAgICJzYWxlc2ZvcmNlX3ByaWNlYm9va19lbnRyeV9pZCI6ICIwMXU2czAwMDAwNk15UmZBQUsiLAogICAgICAgICAgICAic2FsZXNmb3JjZV9wcmljZWJvb2tfZW50cnlfbGluayI6ICJodHRwczovL2Nvbm5lY3Qtc2Fhcy04OTgyMi1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS8wMXU2czAwMDAwNk15UmZBQUsiCiAgICAgICAgICB9LAogICAgICAgICAgIm5pY2tuYW1lIjogbnVsbCwKICAgICAgICAgICJwcm9kdWN0IjogInByb2RfT3liakJFNFB5cDFpNk4iLAogICAgICAgICAgInJlY3VycmluZyI6IHsKICAgICAgICAgICAgImFnZ3JlZ2F0ZV91c2FnZSI6IG51bGwsCiAgICAgICAgICAgICJpbnRlcnZhbCI6ICJtb250aCIsCiAgICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAgICJ1c2FnZV90eXBlIjogImxpY2Vuc2VkIgogICAgICAgICAgfSwKICAgICAgICAgICJ0YXhfYmVoYXZpb3IiOiAidW5zcGVjaWZpZWQiLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV9xdWFudGl0eSI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJyZWN1cnJpbmciLAogICAgICAgICAgInVuaXRfYW1vdW50IjogMTIwMDAsCiAgICAgICAgICAidW5pdF9hbW91bnRfZGVjaW1hbCI6ICIxMjAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFPQWVXMklzZ2Y5MlhiQU9mVUZtb00yUSIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX095YmpGQUNrYTVYbm5pIiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIxMjAwMCIKICAgICAgfQogICAgXSwKICAgICJoYXNfbW9yZSI6IGZhbHNlLAogICAgInRvdGFsX2NvdW50IjogMSwKICAgICJ1cmwiOiAiL3YxL2ludm9pY2VzL3VwY29taW5nL2xpbmVzP3N1YnNjcmlwdGlvbj1zdWJfMU9BZVcySXNnZjkyWGJBT2ZVRm1vTTJRIgogIH0sCiAgImxpdmVtb2RlIjogZmFsc2UsCiAgIm1ldGFkYXRhIjoge30sCiAgIm5leHRfcGF5bWVudF9hdHRlbXB0IjogMTcwMjA4MzYwMCwKICAibnVtYmVyIjogbnVsbCwKICAib25fYmVoYWxmX29mIjogbnVsbCwKICAicGFpZCI6IGZhbHNlLAogICJwYWlkX291dF9vZl9iYW5kIjogZmFsc2UsCiAgInBheW1lbnRfaW50ZW50IjogbnVsbCwKICAicGF5bWVudF9zZXR0aW5ncyI6IHsKICAgICJkZWZhdWx0X21hbmRhdGUiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX29wdGlvbnMiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX3R5cGVzIjogbnVsbAogIH0sCiAgInBlcmlvZF9lbmQiOiAxNzAyMDgwMDAwLAogICJwZXJpb2Rfc3RhcnQiOiAxNjk5NTYwNDcwLAogICJwb3N0X3BheW1lbnRfY3JlZGl0X25vdGVzX2Ftb3VudCI6IDAsCiAgInByZV9wYXltZW50X2NyZWRpdF9ub3Rlc19hbW91bnQiOiAwLAogICJxdW90ZSI6IG51bGwsCiAgInJlY2VpcHRfbnVtYmVyIjogbnVsbCwKICAicmVuZGVyaW5nIjogbnVsbCwKICAicmVuZGVyaW5nX29wdGlvbnMiOiBudWxsLAogICJzaGlwcGluZ19jb3N0IjogbnVsbCwKICAic2hpcHBpbmdfZGV0YWlscyI6IG51bGwsCiAgInN0YXJ0aW5nX2JhbGFuY2UiOiAwLAogICJzdGF0ZW1lbnRfZGVzY3JpcHRvciI6IG51bGwsCiAgInN0YXR1cyI6ICJkcmFmdCIsCiAgInN0YXR1c190cmFuc2l0aW9ucyI6IHsKICAgICJmaW5hbGl6ZWRfYXQiOiBudWxsLAogICAgIm1hcmtlZF91bmNvbGxlY3RpYmxlX2F0IjogbnVsbCwKICAgICJwYWlkX2F0IjogbnVsbCwKICAgICJ2b2lkZWRfYXQiOiBudWxsCiAgfSwKICAic3Vic2NyaXB0aW9uIjogInN1Yl8xT0FlVzJJc2dmOTJYYkFPZlVGbW9NMlEiLAogICJzdWJzY3JpcHRpb25fZGV0YWlscyI6IHsKICAgICJtZXRhZGF0YSI6IHsKICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaWQiOiAiODAxNnMwMDAwMDFGWHlkQUFHIiwKICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL2Nvbm5lY3Qtc2Fhcy04OTgyMi1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE2czAwMDAwMUZYeWRBQUciCiAgICB9CiAgfSwKICAic3VidG90YWwiOiAxMjAwMCwKICAic3VidG90YWxfZXhjbHVkaW5nX3RheCI6IDEyMDAwLAogICJ0YXgiOiBudWxsLAogICJ0ZXN0X2Nsb2NrIjogbnVsbCwKICAidG90YWwiOiAxMjAwMCwKICAidG90YWxfZGlzY291bnRfYW1vdW50cyI6IFtdLAogICJ0b3RhbF9leGNsdWRpbmdfdGF4IjogMTIwMDAsCiAgInRvdGFsX3RheF9hbW91bnRzIjogW10sCiAgInRyYW5zZmVyX2RhdGEiOiBudWxsLAogICJ3ZWJob29rc19kZWxpdmVyZWRfYXQiOiBudWxsCn0= + recorded_at: Thu, 09 Nov 2023 20:08:09 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA body: encoding: US-ASCII string: '' @@ -11358,13 +11807,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_oYHTlXCaLeiu02","request_duration_ms":281}}' + - '{"last_request_metrics":{"request_id":"req_AeUe9ANYbdADrl","request_duration_ms":280}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11379,31 +11828,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:30 GMT + - Thu, 09 Nov 2023 20:08:09 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_3eAnB7owNyojt3 + - req_GehcZQwOtUAa87 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11412,17 +11869,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -11441,8 +11898,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -11451,45 +11908,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -11499,13 +11956,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:09 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nR7qAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXyiAAG%27 body: encoding: US-ASCII string: '' @@ -11524,12 +11981,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:31 GMT + - Thu, 09 Nov 2023 20:08:10 GMT Set-Cookie: - - BrowserId=8oSepjF7Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:31 + - BrowserId=tFFRZH87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11542,7 +11999,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13550/5000000 + - api-usage=630/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -11552,10 +12009,60 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:10 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXiFUgzHkZabO?expand%5B%5D=test_clock + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DwlAAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:08:10 GMT + Set-Cookie: + - BrowserId=tF4iAn87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08: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=643/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: Thu, 09 Nov 2023 20:08:10 GMT +- request: + method: get + uri: https://api.stripe.com/v1/customers/cus_Oybjh147v6FUqZ?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -11567,13 +12074,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_3eAnB7owNyojt3","request_duration_ms":216}}' + - '{"last_request_metrics":{"request_id":"req_GehcZQwOtUAa87","request_duration_ms":202}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11588,31 +12095,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:31 GMT + - Thu, 09 Nov 2023 20:08:10 GMT Content-Type: - application/json Content-Length: - - '850' + - '845' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_0iZTANWMr9OwdA + - req_EBkqaOQsYo9i3O Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11621,11 +12136,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXiFUgzHkZabO", + "id": "cus_Oybjh147v6FUqZ", "object": "customer", "address": null, "balance": 0, - "created": 1691011840, + "created": 1699560464, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -11633,7 +12148,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "29787442", + "invoice_prefix": "BB5D090F", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -11642,10 +12157,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMT1AAM", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMT1AAM" + "salesforce_account_id": "0016s00000fzBrEAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBrEAAU" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -11653,13 +12168,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:10 GMT - request: method: post - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA body: encoding: UTF-8 - string: phases[0][currency]=usd&phases[0][discounts][0][coupon]=SKOuY0eI&phases[0][end_date]=1706832000&phases[0][items][0][billing_thresholds]=&phases[0][items][0][discounts][0][coupon]=35zEfirQ&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQebAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQebAAE&phases[0][items][0][plan]=price_1NamcyIsgf92XbAOqBYiOvvD&phases[0][items][0][price]=price_1NamcyIsgf92XbAOqBYiOvvD&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=8017e000000nR7lAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7lAAE&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1690934400&phases[1][items][0][price]=price_1NamcyIsgf92XbAOqBYiOvvD&phases[1][items][0][metadata][salesforce_order_item_id]=8027e000001bQebAAE&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQebAAE&phases[1][items][0][discounts][0][coupon]=35zEfirQ&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1NamdhIsgf92XbAO3Au7K48z&phases[1][items][1][metadata][salesforce_order_item_id]=8027e000001bQegAAE&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQegAAE&phases[1][items][1][discounts]=&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=8017e000000nR7qAAE&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7qAAE&phases[1][start_date]=1706832000&phases[1][end_date]=1722556800&proration_behavior=none + string: phases[0][currency]=usd&phases[0][discounts][0][coupon]=AziNcVjl&phases[0][end_date]=1715212800&phases[0][items][0][billing_thresholds]=&phases[0][items][0][discounts][0][coupon]=4HuhZaSV&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014Mw2AAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014Mw2AAE&phases[0][items][0][plan]=price_1OAeVyIsgf92XbAOaSCebWEJ&phases[0][items][0][price]=price_1OAeVyIsgf92XbAOaSCebWEJ&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=8016s000001FXydAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXydAAG&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1699488000&phases[1][items][0][price]=price_1OAeVyIsgf92XbAOaSCebWEJ&phases[1][items][0][metadata][salesforce_order_item_id]=8026s0000014Mw2AAE&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014Mw2AAE&phases[1][items][0][discounts][0][coupon]=4HuhZaSV&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1OAeWKIsgf92XbAOdNHcCgAt&phases[1][items][1][metadata][salesforce_order_item_id]=8026s0000014Mw7AAE&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014Mw7AAE&phases[1][items][1][discounts]=&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=8016s000001FXyiAAG&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyiAAG&phases[1][start_date]=1715212800&phases[1][end_date]=1731110400&proration_behavior=none headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -11668,15 +12183,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0iZTANWMr9OwdA","request_duration_ms":463}}' + - '{"last_request_metrics":{"request_id":"req_EBkqaOQsYo9i3O","request_duration_ms":212}}' Idempotency-Key: - - cee9ede8-7b28-41d7-b47f-dcfedbc67e6f + - 9af1771d-8ea4-4a5f-82c0-da3de39ad1da 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11691,37 +12206,45 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:32 GMT + - Thu, 09 Nov 2023 20:08:11 GMT Content-Type: - application/json Content-Length: - - '4555' + - '4525' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - cee9ede8-7b28-41d7-b47f-dcfedbc67e6f + - 9af1771d-8ea4-4a5f-82c0-da3de39ad1da Original-Request: - - req_Vpes7Am0pOl3VP + - req_qbJ03JIqKL57uz Request-Id: - - req_Vpes7Am0pOl3VP + - req_qbJ03JIqKL57uz 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: @@ -11730,17 +12253,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1706832000, - "start_date": 1690934400 + "end_date": 1715212800, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -11762,8 +12285,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -11772,45 +12295,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1706832000, + "end_date": 1715212800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null }, @@ -11826,23 +12349,23 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] }, @@ -11850,22 +12373,22 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQegAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQegAAE" + "salesforce_order_item_id": "8026s0000014Mw7AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw7AAE" }, - "plan": "price_1NamdhIsgf92XbAO3Au7K48z", - "price": "price_1NamdhIsgf92XbAO3Au7K48z", + "plan": "price_1OAeWKIsgf92XbAOdNHcCgAt", + "price": "price_1OAeWKIsgf92XbAOdNHcCgAt", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7qAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7qAAE" + "salesforce_order_id": "8016s000001FXyiAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyiAAG" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1706832000, + "start_date": 1715212800, "transfer_data": null, "trial_end": null } @@ -11875,16 +12398,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:11 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7qAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyiAAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1Namd8Isgf92XbAOGlPN9LCW"}' + string: '{"Stripe_ID__c":"sub_sched_1OAeW2Isgf92XbAO9BXfkIPA"}' headers: User-Agent: - Faraday v2.4.0 @@ -11902,12 +12425,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:33 GMT + - Thu, 09 Nov 2023 20:08:11 GMT Set-Cookie: - - BrowserId=83WOeTF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:33 + - BrowserId=tQqPSX87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11922,18 +12445,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13548/5000000 + - api-usage=660/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:11 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nR7qAAE-8017e000000nR7qAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXyiAAG-8016s000001FXyiAAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR7qAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR7qAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXyiAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXyiAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAeW2Isgf92XbAO9BXfkIPA","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":null}' headers: User-Agent: - Faraday v2.4.0 @@ -11951,12 +12474,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:33 GMT + - Thu, 09 Nov 2023 20:08:11 GMT Set-Cookie: - - BrowserId=88SYgzF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:33 + - BrowserId=tV8XKX87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11969,20 +12492,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13565/5000000 + - api-usage=652/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrxoEAC" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000Ky1fEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrxoEAC","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1W6s000000Ky1fEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 20:08:11 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -11994,13 +12517,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Vpes7Am0pOl3VP","request_duration_ms":687}}' + - '{"last_request_metrics":{"request_id":"req_qbJ03JIqKL57uz","request_duration_ms":795}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12015,31 +12538,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:34 GMT + - Thu, 09 Nov 2023 20:08:12 GMT Content-Type: - application/json Content-Length: - - '7977' + - '7932' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_wfJ5qfONc6pevf + - req_RN6aVa2K433aTr Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12048,17 +12579,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1706832000, - "start_date": 1690934400 + "end_date": 1715212800, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -12080,8 +12611,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -12090,49 +12621,49 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1706832000, + "end_date": 1715212800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", "price": { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12152,12 +12683,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null }, @@ -12173,38 +12704,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", "price": { - "id": "price_1NamcyIsgf92XbAOqBYiOvvD", + "id": "price_1OAeVyIsgf92XbAOaSCebWEJ", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011844, + "created": 1699560466, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12226,16 +12757,16 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQegAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQegAAE" + "salesforce_order_item_id": "8026s0000014Mw7AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw7AAE" }, - "plan": "price_1NamdhIsgf92XbAO3Au7K48z", + "plan": "price_1OAeWKIsgf92XbAOdNHcCgAt", "price": { - "id": "price_1NamdhIsgf92XbAO3Au7K48z", + "id": "price_1OAeWKIsgf92XbAOdNHcCgAt", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011889, + "created": 1699560488, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -12243,12 +12774,12 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_original_stripe_price_id": "price_1NamcyIsgf92XbAOqBYiOvvD", - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_original_stripe_price_id": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12268,12 +12799,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR7qAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7qAAE" + "salesforce_order_id": "8016s000001FXyiAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyiAAG" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1706832000, + "start_date": 1715212800, "transfer_data": null, "trial_end": null } @@ -12283,13 +12814,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:12 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1NamdhIsgf92XbAO3Au7K48z + uri: https://api.stripe.com/v1/prices/price_1OAeWKIsgf92XbAOdNHcCgAt body: encoding: UTF-8 string: active=false @@ -12301,15 +12832,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_wfJ5qfONc6pevf","request_duration_ms":293}}' + - '{"last_request_metrics":{"request_id":"req_RN6aVa2K433aTr","request_duration_ms":236}}' Idempotency-Key: - - bb90489d-4a5c-4dfa-b68b-504d4fdd6b16 + - 4f0df139-17b0-4b3f-8c10-39ede22187f5 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12324,37 +12855,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:34 GMT + - Thu, 09 Nov 2023 20:08:12 GMT Content-Type: - application/json Content-Length: - - '975' + - '970' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - bb90489d-4a5c-4dfa-b68b-504d4fdd6b16 + - 4f0df139-17b0-4b3f-8c10-39ede22187f5 Original-Request: - - req_CXpTEeQajX6yhP + - req_wHuj5ok8LpNDd0 Request-Id: - - req_CXpTEeQajX6yhP + - req_wHuj5ok8LpNDd0 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: @@ -12363,11 +12901,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamdhIsgf92XbAO3Au7K48z", + "id": "price_1OAeWKIsgf92XbAOdNHcCgAt", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691011889, + "created": 1699560488, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -12375,12 +12913,12 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_original_stripe_price_id": "price_1NamcyIsgf92XbAOqBYiOvvD", - "salesforce_pricebook_entry_id": "01u7e00000IsjjEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjjEAAR" + "salesforce_original_stripe_price_id": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "salesforce_pricebook_entry_id": "01u6s000006MyRfAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRfAAK" }, "nickname": null, - "product": "prod_ONXinYYMkbC0um", + "product": "prod_OybjBE4Pyp1i6N", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12395,10 +12933,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:12 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXydAAG body: encoding: US-ASCII string: '' @@ -12417,12 +12955,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:34 GMT + - Thu, 09 Nov 2023 20:08:12 GMT Set-Cookie: - - BrowserId=9GUevTF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:34 + - BrowserId=tdqwcX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12435,9 +12973,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13583/5000000 + - api-usage=661/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:56 GMT + - Thu, 09 Nov 2023 20:07:51 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -12446,13 +12984,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7lAAE"},"Id":"8017e000000nR7lAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMT1AAM","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEXEAA3","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:30:35.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001303","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:30:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:30:56.000+0000","LastViewedDate":"2023-08-02T21:31:22.000+0000","LastReferencedDate":"2023-08-02T21:31:22.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXydAAG"},"Id":"8016s000001FXydAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBrEAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE30AAF","EffectiveDate":"2023-11-09","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-11-09T20:07:42.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000276","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:07:41.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:51.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:07:51.000+0000","LastViewedDate":"2023-11-09T20:08:05.000+0000","LastReferencedDate":"2023-11-09T20:08:05.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":"a0z7e00000BDKaiAAH","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_1Namd8Isgf92XbAOGlPN9LCW","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1Namd8Isgf92XbAOGlPN9LCW"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DwgAAE","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_1OAeW2Isgf92XbAO9BXfkIPA","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA"}' + recorded_at: Thu, 09 Nov 2023 20:08:12 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1Namd8Isgf92XbAOGlPN9LCW + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeW2Isgf92XbAO9BXfkIPA body: encoding: US-ASCII string: '' @@ -12464,13 +13002,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_CXpTEeQajX6yhP","request_duration_ms":227}}' + - '{"last_request_metrics":{"request_id":"req_wHuj5ok8LpNDd0","request_duration_ms":361}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12485,31 +13023,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:34 GMT + - Thu, 09 Nov 2023 20:08:12 GMT Content-Type: - application/json Content-Length: - - '4555' + - '4525' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_Ksk7hlWOPXAyYy + - req_iK69aecRVJ6Agw Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12518,17 +13064,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1Namd8Isgf92XbAOGlPN9LCW", + "id": "sub_sched_1OAeW2Isgf92XbAO9BXfkIPA", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011854, + "created": 1699560470, "current_phase": { - "end_date": 1706832000, - "start_date": 1690934400 + "end_date": 1715212800, + "start_date": 1699488000 }, - "customer": "cus_ONXiFUgzHkZabO", + "customer": "cus_Oybjh147v6FUqZ", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -12550,8 +13096,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "phases": [ { @@ -12560,45 +13106,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "SKOuY0eI", + "coupon": "AziNcVjl", "discount": null } ], - "end_date": 1706832000, + "end_date": 1715212800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7lAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7lAAE" + "salesforce_order_id": "8016s000001FXydAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXydAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null }, @@ -12614,23 +13160,23 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "35zEfirQ", + "coupon": "4HuhZaSV", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQebAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQebAAE" + "salesforce_order_item_id": "8026s0000014Mw2AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw2AAE" }, - "plan": "price_1NamcyIsgf92XbAOqBYiOvvD", - "price": "price_1NamcyIsgf92XbAOqBYiOvvD", + "plan": "price_1OAeVyIsgf92XbAOaSCebWEJ", + "price": "price_1OAeVyIsgf92XbAOaSCebWEJ", "quantity": 1, "tax_rates": [] }, @@ -12638,22 +13184,22 @@ http_interactions: "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQegAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQegAAE" + "salesforce_order_item_id": "8026s0000014Mw7AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mw7AAE" }, - "plan": "price_1NamdhIsgf92XbAO3Au7K48z", - "price": "price_1NamdhIsgf92XbAO3Au7K48z", + "plan": "price_1OAeWKIsgf92XbAOdNHcCgAt", + "price": "price_1OAeWKIsgf92XbAOdNHcCgAt", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7qAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7qAAE" + "salesforce_order_id": "8016s000001FXyiAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyiAAG" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1706832000, + "start_date": 1715212800, "transfer_data": null, "trial_end": null } @@ -12663,13 +13209,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1Namd8Isgf92XbAOZDe1lx3c", + "subscription": "sub_1OAeW2Isgf92XbAOfUFmoM2Q", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:12 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/SKOuY0eI + uri: https://api.stripe.com/v1/coupons/AziNcVjl body: encoding: US-ASCII string: '' @@ -12681,13 +13227,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Ksk7hlWOPXAyYy","request_duration_ms":239}}' + - '{"last_request_metrics":{"request_id":"req_iK69aecRVJ6Agw","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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12702,31 +13248,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:35 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_KY4xpRG9G2pJqN + - req_pySnBhSIgw1qrQ Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12735,18 +13288,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "SKOuY0eI", + "id": "AziNcVjl", "object": "coupon", "amount_off": 1000, - "created": 1691011853, + "created": 1699560469, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm32EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm32EAA" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iUEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iUEAQ" }, "name": "$10 off coupon", "percent_off": null, @@ -12754,10 +13307,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:13 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JFv1EAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvJBEAY%27 body: encoding: US-ASCII string: '' @@ -12776,12 +13329,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:35 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Set-Cookie: - - BrowserId=9N6UiDF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:35 + - BrowserId=ti2x2387Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12794,7 +13347,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13561/5000000 + - api-usage=657/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -12803,11 +13356,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA"},"Id":"a1N7e000002fm32EAA"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ"},"Id":"a1N6s00000113iUEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:13 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ body: encoding: US-ASCII string: '' @@ -12826,12 +13379,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:35 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Set-Cookie: - - BrowserId=9Rfz7TF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:35 + - BrowserId=tj6h9H87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12844,9 +13397,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13566/5000000 + - api-usage=644/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:53 GMT + - Thu, 09 Nov 2023 20:07:49 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -12855,12 +13408,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm32EAA"},"Id":"a1N7e000002fm32EAA","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0145","CreatedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:53.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:53.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nR7lAAE","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFv1EAG","Stripe_ID__c":"SKOuY0eI","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/SKOuY0eI"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iUEAQ"},"Id":"a1N6s00000113iUEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0019","CreatedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:49.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:49.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXydAAG","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJBEAY","Stripe_ID__c":"AziNcVjl","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/AziNcVjl"}' + recorded_at: Thu, 09 Nov 2023 20:08:13 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/35zEfirQ + uri: https://api.stripe.com/v1/coupons/4HuhZaSV body: encoding: US-ASCII string: '' @@ -12872,13 +13425,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_KY4xpRG9G2pJqN","request_duration_ms":174}}' + - '{"last_request_metrics":{"request_id":"req_pySnBhSIgw1qrQ","request_duration_ms":198}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12893,31 +13446,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:36 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Content-Type: - application/json Content-Length: - - '729' + - '719' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_EhOa18zkbHxOtL + - req_95B5lSvEkVCwhn Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12926,20 +13486,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "35zEfirQ", + "id": "4HuhZaSV", "object": "coupon", "amount_off": null, - "created": 1691011847, + "created": 1699560467, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm33EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm33EAA", - "salesforce_quote_stripe_coupon_id": "a1R7e000007JFuwEAG", - "salesforce_quote_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1R7e000007JFuwEAG" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iVEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iVEAQ", + "salesforce_quote_stripe_coupon_id": "a1R6s000000uvJ6EAI", + "salesforce_quote_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1R6s000000uvJ6EAI" }, "name": "25% off coupon", "percent_off": 25.0, @@ -12947,10 +13507,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:13 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JFuwEAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvJ6EAI%27 body: encoding: US-ASCII string: '' @@ -12969,12 +13529,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:36 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Set-Cookie: - - BrowserId=9Xj_4DF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:36 + - BrowserId=tnFKk387Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12987,7 +13547,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13567/5000000 + - api-usage=653/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -12996,11 +13556,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA"},"Id":"a1N7e000002fm33EAA"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ"},"Id":"a1N6s00000113iVEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:08:13 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ body: encoding: US-ASCII string: '' @@ -13019,12 +13579,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:36 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Set-Cookie: - - BrowserId=9bRaRjF7Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:36 + - BrowserId=tn2mo387Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:08:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -13037,9 +13597,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13568/5000000 + - api-usage=658/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:30:47 GMT + - Thu, 09 Nov 2023 20:07:47 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -13048,12 +13608,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm33EAA"},"Id":"a1N7e000002fm33EAA","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0146","CreatedDate":"2023-08-02T21:30:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:30:47.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:30:47.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bQebAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFuwEAG","Stripe_ID__c":"35zEfirQ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/35zEfirQ"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iVEAQ"},"Id":"a1N6s00000113iVEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0020","CreatedDate":"2023-11-09T20:07:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:47.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014Mw2AAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJ6EAI","Stripe_ID__c":"4HuhZaSV","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/4HuhZaSV"}' + recorded_at: Thu, 09 Nov 2023 20:08:13 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/35zEfirQ + uri: https://api.stripe.com/v1/coupons/4HuhZaSV body: encoding: US-ASCII string: '' @@ -13065,13 +13625,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_EhOa18zkbHxOtL","request_duration_ms":268}}' + - '{"last_request_metrics":{"request_id":"req_95B5lSvEkVCwhn","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-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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -13086,31 +13646,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:37 GMT + - Thu, 09 Nov 2023 20:08:13 GMT Content-Type: - application/json Content-Length: - - '729' + - '719' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_2PPtHHzSpQXnzD + - req_PGZsmRsUUPFWV9 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -13119,20 +13686,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "35zEfirQ", + "id": "4HuhZaSV", "object": "coupon", "amount_off": null, - "created": 1691011847, + "created": 1699560467, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm33EAA", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm33EAA", - "salesforce_quote_stripe_coupon_id": "a1R7e000007JFuwEAG", - "salesforce_quote_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1R7e000007JFuwEAG" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iVEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iVEAQ", + "salesforce_quote_stripe_coupon_id": "a1R6s000000uvJ6EAI", + "salesforce_quote_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1R6s000000uvJ6EAI" }, "name": "25% off coupon", "percent_off": 25.0, @@ -13140,111 +13707,5 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 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/8017e000000nR7lAAE-8017e000000nR7lAAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR7lAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR7lAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_36WKm2KD5HS2oQ"}' - 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: - - Wed, 11 Oct 2023 16:37:57 GMT - Set-Cookie: - - BrowserId=iLSPV2hUEe6vVdkxWprQuQ; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:37:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37: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=82/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCpIUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCpIUAW","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 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/8017e000000nR7qAAE-8017e000000nR7qAAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR7qAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR7qAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1Namd8Isgf92XbAOGlPN9LCW","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":null}' - 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: - - Wed, 11 Oct 2023 16:37:57 GMT - Set-Cookie: - - BrowserId=iOrhrGhUEe6uf8s-qFK0gA; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:37:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37: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=82/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCpNUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCpNUAW","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:08:13 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/amendments/test_amendments/supports_adding_new_phase_and_phase_item_coupons_to_an_sf_amendment_order.yml b/test/vcr_cassettes/integration/amendments/test_amendments/supports_adding_new_phase_and_phase_item_coupons_to_an_sf_amendment_order.yml index c0af00f0ed..31d0f229b5 100644 --- a/test/vcr_cassettes/integration/amendments/test_amendments/supports_adding_new_phase_and_phase_item_coupons_to_an_sf_amendment_order.yml +++ b/test/vcr_cassettes/integration/amendments/test_amendments/supports_adding_new_phase_and_phase_item_coupons_to_an_sf_amendment_order.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/Account + uri: https://connect-saas-89822-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-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:37 GMT + - Thu, 09 Nov 2023 20:06:15 GMT Set-Cookie: - - BrowserId=9kXFjTF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:37 + - BrowserId=b_iFUX87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:15 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13584/5000000 + - api-usage=531/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBqzAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iaMUOAA2","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0016s00000fzBqzAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:15 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-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-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:38 GMT + - Thu, 09 Nov 2023 20:06:15 GMT Set-Cookie: - - BrowserId=9qPEEDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:38 + - BrowserId=cDpwIH87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:15 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13582/5000000 + - api-usage=531/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qoAAA" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009As7gAAC","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"01t6s000004g3qoAAA","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:16 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:38 GMT + - Thu, 09 Nov 2023 20:06:16 GMT Set-Cookie: - - BrowserId=9vKmrjF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:38 + - BrowserId=cHP2tX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13585/5000000 + - api-usage=532/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:16 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7gAAC","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qoAAA","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:39 GMT + - Thu, 09 Nov 2023 20:06:16 GMT Set-Cookie: - - BrowserId=9zaOQzF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:39 + - BrowserId=cIDILn87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13562/5000000 + - api-usage=532/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjgEAAR" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRaAAK" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000IsjgEAAR","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"01u6s000006MyRaAAK","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:16 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:39 GMT + - Thu, 09 Nov 2023 20:06:16 GMT Set-Cookie: - - BrowserId=93kVADF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:39 + - BrowserId=cJYk8X87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13577/5000000 + - api-usage=533/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:16 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-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":"0017e00001iaMUOAA2"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBqzAAE"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:40 GMT + - Thu, 09 Nov 2023 20:06:16 GMT Set-Cookie: - - BrowserId=97zUzjF7Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:40 + - BrowserId=cKTKrH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13586/5000000 + - api-usage=531/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NfEdqAAF" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE2qAAF" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NfEdqAAF","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0066s00000CfE2qAAF","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:16 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"phase_add_coupon@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:40 GMT + - Thu, 09 Nov 2023 20:06:16 GMT Set-Cookie: - - BrowserId=-A0XhTF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:40 + - BrowserId=cNiFZH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13563/5000000 + - api-usage=531/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jI84JAAS" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY9BaAAL" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jI84JAAS","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"0036s00000WY9BaAAL","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:16 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://connect-saas-89822-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":"0067e00000NfEdqAAF","SBQQ__PrimaryContact__c":"0037e00001jI84JAAS","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE2qAAF","SBQQ__PrimaryContact__c":"0036s00000WY9BaAAL","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:31:41 GMT + - Thu, 09 Nov 2023 20:06:17 GMT Set-Cookie: - - BrowserId=-GmPhzF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:41 + - BrowserId=cP8gR387Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13564/5000000 + - api-usage=531/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDKZbAAP","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a0z6s0000016DwWAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:17 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Pricebook2%20where%20IsStandard%20=%20true + uri: https://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:42 GMT + - Thu, 09 Nov 2023 20:06:17 GMT Set-Cookie: - - BrowserId=-P4u9jF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:42 + - BrowserId=cXi86387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13578/5000000 + - api-usage=531/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:17 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDKZbAAP + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DwWAAU body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:42 GMT + - Thu, 09 Nov 2023 20:06:17 GMT Set-Cookie: - - BrowserId=-TWSiTF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:42 + - BrowserId=cYdinH87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"Id\":\"a0z7e00000BDKZbAAP\",\"Name\":\"Q-01222\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"Id\":\"a0z6s0000016DwWAAU\",\"Name\":\"Q-00203\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/0067e00000NfEdqAAF\"},\"Id\":\"0067e00000NfEdqAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":\"0066s00000CfE2qAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"Id\":\"0066s00000CfE2qAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:18 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009As7gAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qoAAA body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:43 GMT + - Thu, 09 Nov 2023 20:06:18 GMT Set-Cookie: - - BrowserId=-cC7hzF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:43 + - BrowserId=cfv2ZX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"Name\":\"REST - Product2 2023-08-02 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000IsjgEAAR\"},\"Product2Id\":\"01t7e000009As7gAAC\",\"Id\":\"01u7e00000IsjgEAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRaAAK\"},\"Product2Id\":\"01t6s000004g3qoAAA\",\"Id\":\"01u6s000006MyRaAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 20:06:19 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://connect-saas-89822-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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"Id\":\"a0z7e00000BDKZbAAP\",\"Name\":\"Q-01222\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"Id\":\"a0z6s0000016DwWAAU\",\"Name\":\"Q-00203\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/0067e00000NfEdqAAF\"},\"Id\":\"0067e00000NfEdqAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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\":\"0066s00000CfE2qAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"Id\":\"0066s00000CfE2qAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000IsjgEAAR\"},\"Product2Id\":\"01t7e000009As7gAAC\",\"Id\":\"01u7e00000IsjgEAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRaAAK\"},\"Product2Id\":\"01t6s000004g3qoAAA\",\"Id\":\"01u6s000006MyRaAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:44 GMT + - Thu, 09 Nov 2023 20:06:19 GMT Set-Cookie: - - BrowserId=-kjXbjF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:44 + - BrowserId=cknIy387Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,28 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"Id\":\"a0z7e00000BDKZbAAP\",\"Name\":\"Q-01222\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"Id\":\"a0z6s0000016DwWAAU\",\"Name\":\"Q-00203\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/0067e00000NfEdqAAF\"},\"Id\":\"0067e00000NfEdqAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKZbAAP\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjgEAAR\",\"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-0002634\",\"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/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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\":\"0066s00000CfE2qAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"Id\":\"0066s00000CfE2qAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwWAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRaAAK\",\"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-0001696\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:21 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://connect-saas-89822-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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"Id\":\"a0z7e00000BDKZbAAP\",\"Name\":\"Q-01222\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"Id\":\"a0z6s0000016DwWAAU\",\"Name\":\"Q-00203\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/0067e00000NfEdqAAF\"},\"Id\":\"0067e00000NfEdqAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKZbAAP\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjgEAAR\",\"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-0002634\",\"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/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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\":\"0066s00000CfE2qAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"Id\":\"0066s00000CfE2qAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwWAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRaAAK\",\"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-0001696\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -669,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:46 GMT + - Thu, 09 Nov 2023 20:06:21 GMT Set-Cookie: - - BrowserId=-2e0cDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:46 + - BrowserId=c5VbcH87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -692,28 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"Id\":\"a0z7e00000BDKZbAAP\",\"Name\":\"Q-01222\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"Id\":\"a0z6s0000016DwWAAU\",\"Name\":\"Q-00203\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/0067e00000NfEdqAAF\"},\"Id\":\"0067e00000NfEdqAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKZbAAP\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjgEAAR\",\"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-0002635\",\"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/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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\":\"0066s00000CfE2qAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"Id\":\"0066s00000CfE2qAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwWAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRaAAK\",\"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-0001697\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:22 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"Id\":\"a0z7e00000BDKZbAAP\",\"Name\":\"Q-01222\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"Id\":\"a0z6s0000016DwWAAU\",\"Name\":\"Q-00203\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/0067e00000NfEdqAAF\"},\"Id\":\"0067e00000NfEdqAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z7e00000BDKZbAAP\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000IsjgEAAR\",\"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-0002635\",\"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/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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\":\"0066s00000CfE2qAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"Id\":\"0066s00000CfE2qAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DwWAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRaAAK\",\"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-0001697\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:48 GMT + - Thu, 09 Nov 2023 20:06:22 GMT Set-Cookie: - - BrowserId=_JZJCjF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:48 + - BrowserId=dE9cyn87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,18 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP\"},\"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/0067e00000NfEdqAAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKZbAAP\",\"AccountId\":\"0017e00001iaMUOAA2\",\"Id\":\"0067e00000NfEdqAAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMUOAA2\",\"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-01222\",\"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\":\"0017e00001iaMUOAA2\",\"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\":\"0067e00000NfEdqAAF\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDKZbAAP\",\"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\":\"a0z7e00000BDKZbAAP\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXt4AAE\"},\"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\":\"a0z7e00000BDKZbAAP\",\"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\":\"a0v7e000008xXt4AAE\",\"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-0002635\",\"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\":\"01u7e00000IsjgEAAR\",\"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/01t7e000009As7gAAC\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7gAAC\",\"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\":\"01t7e000009As7gAAC\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwWAAU\",\"AccountId\":\"0016s00000fzBqzAAE\",\"Id\":\"0066s00000CfE2qAAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBqzAAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00203\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE2qAAF\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DwWAAU\",\"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\":\"a0z6s0000016DwWAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tleJAAQ\"},\"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-11-09 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\":\"a0z6s0000016DwWAAU\",\"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\":\"a0v6s000000tleJAAQ\",\"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-0001697\",\"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\":\"01u6s000006MyRaAAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qoAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:23 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -788,12 +788,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:49 GMT + - Thu, 09 Nov 2023 20:06:23 GMT Set-Cookie: - - BrowserId=_Q11rTF7Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:49 + - BrowserId=dK8IrX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -808,14 +808,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13591/5000000 + - api-usage=534/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:24 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -834,12 +834,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:50 GMT + - Thu, 09 Nov 2023 20:06:24 GMT Set-Cookie: - - BrowserId=_irMPjF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:51 + - BrowserId=da0_JH87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -852,7 +852,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13585/5000000 + - api-usage=532/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -861,12 +861,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEdqAAF","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":"00001305","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:50.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:50.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":"a0z7e00000BDKZbAAP","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/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2qAAF","EffectiveDate":"2023-11-09","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":"00000274","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:06:24.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:24.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:24.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":"a0z6s0000016DwWAAU","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: Thu, 09 Nov 2023 20:06:24 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -887,12 +887,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:51 GMT + - Thu, 09 Nov 2023 20:06:25 GMT Set-Cookie: - - BrowserId=_nI1xDF7Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:51 + - BrowserId=db58fn87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -907,14 +907,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13604/5000000 + - api-usage=533/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:25 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: US-ASCII string: '' @@ -933,12 +933,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:52 GMT + - Thu, 09 Nov 2023 20:06:25 GMT Set-Cookie: - - BrowserId=_vpRnDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:52 + - BrowserId=dgSG7X87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -951,9 +951,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13586/5000000 + - api-usage=533/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:31:51 GMT + - Thu, 09 Nov 2023 20:06:25 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -962,13 +962,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEdqAAF","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:31:51.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001305","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:51.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:51.000+0000","LastViewedDate":"2023-08-02T21:31:51.000+0000","LastReferencedDate":"2023-08-02T21:31:51.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2qAAF","EffectiveDate":"2023-11-09","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-11-09T20:06:25.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000274","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:06:24.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:25.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:25.000+0000","LastViewedDate":"2023-11-09T20:06:25.000+0000","LastReferencedDate":"2023-11-09T20:06:25.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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":"a0z6s0000016DwWAAU","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: Thu, 09 Nov 2023 20:06:25 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: US-ASCII string: '' @@ -987,12 +987,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:52 GMT + - Thu, 09 Nov 2023 20:06:25 GMT Set-Cookie: - - BrowserId=_z6s2jF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:52 + - BrowserId=dhRla387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1005,9 +1005,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13587/5000000 + - api-usage=534/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:31:51 GMT + - Thu, 09 Nov 2023 20:06:25 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1016,16 +1016,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEdqAAF","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:31:51.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001305","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:51.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:31:51.000+0000","LastViewedDate":"2023-08-02T21:31:52.000+0000","LastReferencedDate":"2023-08-02T21:31:52.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2qAAF","EffectiveDate":"2023-11-09","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-11-09T20:06:25.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000274","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:06:24.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:25.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:25.000+0000","LastViewedDate":"2023-11-09T20:06:25.000+0000","LastReferencedDate":"2023-11-09T20:06:25.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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":"a0z6s0000016DwWAAU","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: Thu, 09 Nov 2023 20:06:25 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR7vAAE"]}' + string: '{"order_ids":["8016s000001FXyTAAW"]}' headers: User-Agent: - Faraday v2.4.0 @@ -1043,12 +1043,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:53 GMT + - Thu, 09 Nov 2023 20:06:25 GMT Set-Cookie: - - BrowserId=_3ciMDF7Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:53 + - BrowserId=diXKU387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1068,27 +1068,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jI84JAAS"},"Id":"0037e00001jI84JAAS","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"phase_add_coupon@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:40.000+0000","LastViewedDate":"2023-08-02T21:31:40.000+0000","LastReferencedDate":"2023-08-02T21:31:40.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jI84JAAS","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEdqAAF"},"Id":"0067e00000NfEdqAAF","IsDeleted":false,"AccountId":"0017e00001iaMUOAA2","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:31:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:41.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:31:40.000+0000","LastReferencedDate":"2023-08-02T21:31:40.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKZbAAP","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2"},"Id":"0017e00001iaMUOAA2","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:37.000+0000","LastViewedDate":"2023-08-02T21:31:37.000+0000","LastReferencedDate":"2023-08-02T21:31:37.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0017e00001iaMUOAA2"],"Opportunities":["0067e00000NfEdqAAF"],"Contacts":["0037e00001jI84JAAS"],"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":true,"SBQQ__Type__c":"Quote","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__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jI84JAAS","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":"0067e00000NfEdqAAF","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:31:49.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY9BaAAL"},"Id":"0036s00000WY9BaAAL","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"phase_add_coupon@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:16.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:16.000+0000","LastViewedDate":"2023-11-09T20:06:16.000+0000","LastReferencedDate":"2023-11-09T20:06:16.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY9BaAAL","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF"},"Id":"0066s00000CfE2qAAF","IsDeleted":false,"AccountId":"0016s00000fzBqzAAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:17.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:06:16.000+0000","LastReferencedDate":"2023-11-09T20:06:16.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwWAAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE"},"Id":"0016s00000fzBqzAAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:15.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:15.000+0000","LastViewedDate":"2023-11-09T20:06:15.000+0000","LastReferencedDate":"2023-11-09T20:06:15.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":["0016s00000fzBqzAAE"],"Opportunities":["0066s00000CfE2qAAF"],"Contacts":["0036s00000WY9BaAAL"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY9BaAAL","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE2qAAF","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T20:06:23.000+0000","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":"0017e00001iaMUOAA2","LastReferencedDate":"2023-08-02T21:31:49.000+0000","LastViewedDate":"2023-08-02T21:31:49.000+0000","SystemModstamp":"2023-08-02T21:31:49.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:41.000+0000","Name":"Q-01222","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKZbAAP","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC"},"Id":"01t7e000009As7gAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:31:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:39.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBqzAAE","LastReferencedDate":"2023-11-09T20:06:23.000+0000","LastViewedDate":"2023-11-09T20:06:23.000+0000","SystemModstamp":"2023-11-09T20:06:23.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:23.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:17.000+0000","Name":"Q-00203","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DwWAAU","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA"},"Id":"01t6s000004g3qoAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:15.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:16.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/01u7e00000IsjgEAAR"},"Id":"01u7e00000IsjgEAAR","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7gAAC","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:31:39.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:39.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/a0v7e000008xXt4AAE"},"Id":"a0v7e000008xXt4AAE","IsDeleted":false,"Name":"QL-0002636","CreatedDate":"2023-08-02T21:31:48.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:48.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:48.000+0000","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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":"01u7e00000IsjgEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","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},{"PricebookEntries":[],"Products":["01t7e000009As7gAAC"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt4AAE","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":"0000001327","SystemModstamp":"2023-08-02T21:31:51.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:51.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:50.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":"01u7e00000IsjgEAAR","OrderId":"8017e000000nR7vAAE","IsDeleted":false,"Product2Id":"01t7e000009As7gAAC","Id":"8027e000001bQelAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQelAAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEdqAAF"],"Accounts":["0017e00001iaMUOAA2"],"OrderItems":["8027e000001bQelAAE"],"Quotes":["a0z7e00000BDKZbAAP"],"Opportunity":{"Id":"0067e00000NfEdqAAF","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEdqAAF","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":"a0z7e00000BDKZbAAP","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/v59.0/sobjects/PricebookEntry/01u6s000006MyRaAAK"},"Id":"01u6s000006MyRaAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qoAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:16.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:16.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tleJAAQ"},"Id":"a0v6s000000tleJAAQ","IsDeleted":false,"Name":"QL-0001698","CreatedDate":"2023-11-09T20:06:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:23.000+0000","SBQQ__Quote__c":"a0z6s0000016DwWAAU","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":"01u6s000006MyRaAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","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-11-09","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-11-09 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":["01t6s000004g3qoAAA"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tleJAAQ","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":"0000000503","SystemModstamp":"2023-11-09T20:06:25.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:25.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:24.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRaAAK","OrderId":"8016s000001FXyTAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qoAAA","Id":"8026s0000014MvsAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvsAAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE2qAAF"],"Accounts":["0016s00000fzBqzAAE"],"OrderItems":["8026s0000014MvsAAE"],"Quotes":["a0z6s0000016DwWAAU"],"Opportunity":{"Id":"0066s00000CfE2qAAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF","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":"a0z6s0000016DwWAAU","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:31:52.000+0000","LastViewedDate":"2023-08-02T21:31:52.000+0000","SystemModstamp":"2023-08-02T21:31:51.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:51.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:49.000+0000","TotalAmount":1440.00,"OrderNumber":"00001305","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:31:51.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEdqAAF","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7vAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T20:06:25.000+0000","LastViewedDate":"2023-11-09T20:06:25.000+0000","SystemModstamp":"2023-11-09T20:06:25.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:25.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:24.000+0000","TotalAmount":1440.00,"OrderNumber":"00000274","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:06:25.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE2qAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyTAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyTAAW","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 @@ -1105,10 +1105,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: Thu, 09 Nov 2023 20:06:26 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%278017e000000nR7vAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyTAAW%27%0A body: encoding: US-ASCII string: '' @@ -1127,12 +1127,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:55 GMT + - Thu, 09 Nov 2023 20:06:27 GMT Set-Cookie: - - BrowserId=AJNArzF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:55 + - BrowserId=dvrM9n87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1145,7 +1145,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13611/5000000 + - api-usage=532/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1154,11 +1154,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Type":"New","OpportunityId":"0067e00000NfEdqAAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEdqAAF"},"SBQQ__AmendedContract__c":null}}]}' - 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/8016s000001FXyTAAW"},"Type":"New","OpportunityId":"0066s00000CfE2qAAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE2qAAF"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 20:06:27 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278017e000000nR7vAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXyTAAW%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -1177,12 +1177,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:55 GMT + - Thu, 09 Nov 2023 20:06:27 GMT Set-Cookie: - - BrowserId=AR3M4zF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:55 + - BrowserId=dxJNR387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1195,7 +1195,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13612/5000000 + - api-usage=535/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1204,14 +1204,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE"}]}' - 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/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:27 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]=0017e00001iaMUOAA2&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iaMUOAA2 + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBqzAAE&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBqzAAE headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -1220,13 +1220,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - e10ef824-c0f9-411d-af08-170aec9a0124 + - 509e025c-c8e9-47f4-8563-4e38fdd8e379 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -1241,37 +1241,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:56 GMT + - Thu, 09 Nov 2023 20:06:27 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - e10ef824-c0f9-411d-af08-170aec9a0124 + - 509e025c-c8e9-47f4-8563-4e38fdd8e379 Original-Request: - - req_bWYOr7ua7ntrEM + - req_nJNsyqRzLOrf26 Request-Id: - - req_bWYOr7ua7ntrEM + - req_nJNsyqRzLOrf26 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: @@ -1280,11 +1287,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXjffuNL3yAsF", + "id": "cus_OybiNZbftqIZ1W", "object": "customer", "address": null, "balance": 0, - "created": 1691011916, + "created": 1699560387, "currency": null, "default_currency": null, "default_source": null, @@ -1292,7 +1299,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "90540B2E", + "invoice_prefix": "2FDC5DE5", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -1301,10 +1308,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMUOAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMUOAA2" + "salesforce_account_id": "0016s00000fzBqzAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBqzAAE" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -1312,13 +1319,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:27 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBqzAAE body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ONXjffuNL3yAsF"}' + string: '{"Stripe_ID__c":"cus_OybiNZbftqIZ1W"}' headers: User-Agent: - Faraday v2.4.0 @@ -1336,12 +1343,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:56 GMT + - Thu, 09 Nov 2023 20:06:27 GMT Set-Cookie: - - BrowserId=AZgGeDF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:56 + - BrowserId=d2sbsn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1356,17 +1363,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13613/5000000 + - api-usage=536/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:27 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]=01t7e000009As7gAAC&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009As7gAAC + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qoAAA&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qoAAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -1375,15 +1382,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_bWYOr7ua7ntrEM","request_duration_ms":368}}' + - '{"last_request_metrics":{"request_id":"req_nJNsyqRzLOrf26","request_duration_ms":460}}' Idempotency-Key: - - 80256182-8818-4096-ba7a-f5b812edb679 + - a52f53a9-c562-44b6-9ed2-af7978393e21 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -1398,37 +1405,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:31:57 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Content-Type: - application/json Content-Length: - - '748' + - '761' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 80256182-8818-4096-ba7a-f5b812edb679 + - a52f53a9-c562-44b6-9ed2-af7978393e21 Original-Request: - - req_0XN9XN0FHhE73h + - req_aR7DPKQN9540E1 Request-Id: - - req_0XN9XN0FHhE73h + - req_aR7DPKQN9540E1 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: @@ -1437,39 +1451,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXj2SLLbrOhMy", + "id": "prod_OybiA5XG5yrvmh", "object": "product", "active": true, "attributes": [], - "created": 1691011917, + "created": 1699560388, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7gAAC", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7gAAC" + "salesforce_product2_id": "01t6s000004g3qoAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qoAAA" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-71", + "sku": "rest-product2--2023-11-09-000000-utc-10", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691011917, + "updated": 1699560388, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:28 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qoAAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ONXj2SLLbrOhMy"}' + string: '{"Stripe_ID__c":"prod_OybiA5XG5yrvmh"}' headers: User-Agent: - Faraday v2.4.0 @@ -1487,12 +1502,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:31:57 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Set-Cookie: - - BrowserId=AhEG_TF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:57 + - BrowserId=d7JdIH87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1507,14 +1522,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13593/5000000 + - api-usage=534/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:28 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -1533,12 +1548,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:59 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Set-Cookie: - - BrowserId=AwtslDF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:59 + - BrowserId=d9EwFX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1551,7 +1566,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13592/5000000 + - api-usage=532/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1561,10 +1576,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: Thu, 09 Nov 2023 20:06:28 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -1583,12 +1598,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:59 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Set-Cookie: - - BrowserId=A05CMjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:59 + - BrowserId=d-pd5n87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1601,7 +1616,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13589/5000000 + - api-usage=532/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1611,10 +1626,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: Thu, 09 Nov 2023 20:06:28 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qoAAA body: encoding: US-ASCII string: '' @@ -1633,12 +1648,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:31:59 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Set-Cookie: - - BrowserId=A4Xz6zF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:31:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:31:59 + - BrowserId=d_gYtH87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1651,9 +1666,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13592/5000000 + - api-usage=535/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:31:57 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1662,15 +1677,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC"},"Id":"01t7e000009As7gAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:31:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:57.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/01t6s000004g3qoAAA"},"Id":"01t6s000004g3qoAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:28.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:28.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPricingField__c":"Quantity","SBQQ__ChargeType__c":null,"SBQQ__Component__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationFieldSet__c":null,"SBQQ__ConfigurationFields__c":null,"SBQQ__ConfigurationFormTitle__c":null,"SBQQ__ConfigurationType__c":null,"SBQQ__ConfigurationValidator__c":null,"SBQQ__ConfiguredCodePattern__c":null,"SBQQ__ConfiguredDescriptionPattern__c":null,"SBQQ__CostEditable__c":false,"SBQQ__CostSchedule__c":null,"SBQQ__CustomConfigurationPage__c":null,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__CustomerCommunityAvailability__c":null,"SBQQ__DefaultPricingTable__c":null,"SBQQ__DefaultQuantity__c":1.0,"SBQQ__DescriptionLocked__c":false,"SBQQ__DiscountCategory__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DynamicPricingConstraint__c":null,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionLayout__c":null,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingGuidance__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductPictureID__c":null,"SBQQ__QuantityEditable__c":true,"SBQQ__QuantityScale__c":null,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__RenewalProduct__c":null,"SBQQ__SortOrder__c":null,"SBQQ__Specifications__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionTarget__c":null,"SBQQ__SubscriptionTerm__c":1.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountLevel__c":null,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__UpgradeCredit__c":null,"SBQQ__UpgradeRatio__c":null,"SBQQ__UpgradeSource__c":null,"SBQQ__UpgradeTarget__c":null,"SBQQ__ConfigurationEvent__c":null,"Stripe_ID__c":"prod_ONXj2SLLbrOhMy","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXj2SLLbrOhMy"}' - 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_OybiA5XG5yrvmh","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OybiA5XG5yrvmh"}' + recorded_at: Thu, 09 Nov 2023 20:06:28 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%278027e000001bQelAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvsAAE%27%0A body: encoding: US-ASCII string: '' @@ -1689,12 +1704,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:00 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Set-Cookie: - - BrowserId=A8SqHTF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:00 + - BrowserId=eAblxX87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1707,7 +1722,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13590/5000000 + - api-usage=536/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1717,10 +1732,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: Thu, 09 Nov 2023 20:06:28 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%278027e000001bQelAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvsAAE%27%0A body: encoding: US-ASCII string: '' @@ -1739,12 +1754,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:00 GMT + - Thu, 09 Nov 2023 20:06:28 GMT Set-Cookie: - - BrowserId=BAd_vjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:00 + - BrowserId=eBTvpH87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1757,7 +1772,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13614/5000000 + - api-usage=533/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -1767,10 +1782,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: Thu, 09 Nov 2023 20:06:28 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -1789,12 +1804,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:01 GMT + - Thu, 09 Nov 2023 20:06:29 GMT Set-Cookie: - - BrowserId=BEp8VzF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:01 + - BrowserId=eCO9Wn87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1807,11 +1822,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13605/5000000 + - api-usage=533/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1928,7 +1943,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -1939,14 +1954,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -2114,7 +2127,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 @@ -2130,7 +2144,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -2148,9 +2164,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -2294,9 +2309,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -2418,9 +2433,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 @@ -2472,7 +2496,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 @@ -2907,7 +2931,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -3087,7 +3116,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -3112,7 +3141,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -3168,10 +3208,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: Thu, 09 Nov 2023 20:06:29 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -3190,12 +3230,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:02 GMT + - Thu, 09 Nov 2023 20:06:29 GMT Set-Cookie: - - BrowserId=BPWv4TF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:02 + - BrowserId=eHVf1n87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3208,7 +3248,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13591/5000000 + - api-usage=537/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3218,13 +3258,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: Thu, 09 Nov 2023 20:06:29 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_ONXj2SLLbrOhMy&metadata[salesforce_pricebook_entry_id]=01u7e00000IsjgEAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000IsjgEAAR + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OybiA5XG5yrvmh&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRaAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRaAAK headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3232,16 +3272,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0XN9XN0FHhE73h","request_duration_ms":232}}' Idempotency-Key: - - 163da4cc-90e3-45e8-94e3-60790cc5056a + - 1ea5645d-78e8-4b5d-9909-25914222f898 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3256,37 +3294,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:02 GMT + - Thu, 09 Nov 2023 20:06:29 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 163da4cc-90e3-45e8-94e3-60790cc5056a + - 1ea5645d-78e8-4b5d-9909-25914222f898 Original-Request: - - req_kCZOQCJ8efjYBo + - req_pGb1zPiEt3z2RO Request-Id: - - req_kCZOQCJ8efjYBo + - req_pGb1zPiEt3z2RO 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: @@ -3295,21 +3340,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3324,13 +3369,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:29 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjgEAAR + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRaAAK body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NameEIsgf92XbAORdsSCVw2"}' + string: '{"Stripe_ID__c":"price_1OAeUjIsgf92XbAOndJycPiW"}' headers: User-Agent: - Faraday v2.4.0 @@ -3348,12 +3393,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:03 GMT + - Thu, 09 Nov 2023 20:06:29 GMT Set-Cookie: - - BrowserId=BVRyDjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:03 + - BrowserId=eK6-mn87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3368,14 +3413,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13615/5000000 + - api-usage=535/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bQelAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvsAAE%27 body: encoding: US-ASCII string: '' @@ -3394,12 +3439,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:03 GMT + - Thu, 09 Nov 2023 20:06:30 GMT Set-Cookie: - - BrowserId=BaS0yjF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:03 + - BrowserId=eMQbJ387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3412,7 +3457,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13623/5000000 + - api-usage=538/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3422,30 +3467,18 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:30 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NameEIsgf92XbAORdsSCVw2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tleJAAQ%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kCZOQCJ8efjYBo","request_duration_ms":260}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -3455,75 +3488,89 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Wed, 02 Aug 2023 21:32:03 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' + - Thu, 09 Nov 2023 20:06:30 GMT + Set-Cookie: + - BrowserId=eNKbC387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none Cache-Control: - - no-cache, no-store - Request-Id: - - req_qoXmfE14TjSKXi - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=534/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: Thu, 09 Nov 2023 20:06:30 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXyTAAW%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:06:30 GMT + Set-Cookie: + - BrowserId=eN_guX87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=537/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NameEIsgf92XbAORdsSCVw2", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1691011922, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" - }, - "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", - "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 + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:30 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nR7vAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DwWAAU%27 body: encoding: US-ASCII string: '' @@ -3542,12 +3589,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:04 GMT + - Thu, 09 Nov 2023 20:06:30 GMT Set-Cookie: - - BrowserId=BgjOTjF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:04 + - BrowserId=ePFGL387Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3560,7 +3607,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13616/5000000 + - api-usage=533/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3570,10 +3617,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: Thu, 09 Nov 2023 20:06:30 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXjffuNL3yAsF?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OybiNZbftqIZ1W?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -3585,13 +3632,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_qoXmfE14TjSKXi","request_duration_ms":282}}' + - '{"last_request_metrics":{"request_id":"req_pGb1zPiEt3z2RO","request_duration_ms":255}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3606,31 +3653,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:04 GMT + - Thu, 09 Nov 2023 20:06:30 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_502kbFChyOntII + - req_xsiT0n7O96auhY Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -3639,11 +3694,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXjffuNL3yAsF", + "id": "cus_OybiNZbftqIZ1W", "object": "customer", "address": null, "balance": 0, - "created": 1691011916, + "created": 1699560387, "currency": null, "default_currency": null, "default_source": null, @@ -3651,7 +3706,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "90540B2E", + "invoice_prefix": "2FDC5DE5", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3660,10 +3715,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMUOAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMUOAA2" + "salesforce_account_id": "0016s00000fzBqzAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBqzAAE" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3671,13 +3726,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:30 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAeUjIsgf92XbAOndJycPiW + 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_xsiT0n7O96auhY","request_duration_ms":201}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 20:06:30 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_uJLPBR2xyOK4H0 + 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_1OAeUjIsgf92XbAOndJycPiW", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699560389, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" + }, + "nickname": null, + "product": "prod_OybiA5XG5yrvmh", + "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: Thu, 09 Nov 2023 20:06:30 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nR7vAAE&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7vAAE&start_date=1690934400&customer=cus_ONXjffuNL3yAsF&phases[0][items][0][price]=price_1NameEIsgf92XbAORdsSCVw2&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQelAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQelAAE&phases[0][items][0][quantity]=1&phases[0][end_date]=1722556800&phases[0][metadata][salesforce_order_id]=8017e000000nR7vAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7vAAE + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXyTAAW&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyTAAW&start_date=1699488000&customer=cus_OybiNZbftqIZ1W&phases[0][items][0][price]=price_1OAeUjIsgf92XbAOndJycPiW&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvsAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvsAAE&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXyTAAW&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyTAAW headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3686,15 +3846,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_502kbFChyOntII","request_duration_ms":188}}' + - '{"last_request_metrics":{"request_id":"req_aR7DPKQN9540E1","request_duration_ms":266}}' Idempotency-Key: - - b77d3e63-b864-444e-97e5-62e282da4d20 + - 868dcb9b-957c-415a-a99a-608a4f0706f6 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3709,37 +3869,45 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:05 GMT + - Thu, 09 Nov 2023 20:06:31 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - b77d3e63-b864-444e-97e5-62e282da4d20 + - 868dcb9b-957c-415a-a99a-608a4f0706f6 Original-Request: - - req_EQpZajSMMyqOef + - req_Xl6nxOD4oWjajQ Request-Id: - - req_EQpZajSMMyqOef + - req_Xl6nxOD4oWjajQ 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: @@ -3748,17 +3916,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -3777,8 +3945,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -3793,29 +3961,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -3825,16 +3993,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:31 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NameGIsgf92XbAOtZ3vjAEA"}' + string: '{"Stripe_ID__c":"sub_sched_1OAeUlIsgf92XbAO2pPTthj7"}' headers: User-Agent: - Faraday v2.4.0 @@ -3852,12 +4020,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:05 GMT + - Thu, 09 Nov 2023 20:06:31 GMT Set-Cookie: - - BrowserId=Bs8q2zF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:05 + - BrowserId=eZjQqn87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3872,18 +4040,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13617/5000000 + - api-usage=532/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:31 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nR7vAAE-8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXyTAAW-8016s000001FXyTAAW body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR7vAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR7vAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXyTAAW","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXyTAAW","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAeUlIsgf92XbAO2pPTthj7","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_Xl6nxOD4oWjajQ"}' headers: User-Agent: - Faraday v2.4.0 @@ -3901,12 +4069,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:06 GMT + - Thu, 09 Nov 2023 20:06:31 GMT Set-Cookie: - - BrowserId=Bzv3LDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:06 + - BrowserId=ec11eX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3919,20 +4087,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13624/5000000 + - api-usage=534/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrxLEAS" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000Ky1VEAS" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrxLEAS","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1W6s000000Ky1VEAS","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 20:06:31 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -3944,13 +4112,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_EQpZajSMMyqOef","request_duration_ms":611}}' + - '{"last_request_metrics":{"request_id":"req_uJLPBR2xyOK4H0","request_duration_ms":206}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3965,31 +4133,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:06 GMT + - Thu, 09 Nov 2023 20:06:32 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_85C0QYgYntfn5l + - req_pasJLSy19oBdAB Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -3998,17 +4174,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -4027,8 +4203,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -4043,33 +4219,33 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", "price": { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4089,12 +4265,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -4104,13 +4280,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:32 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: US-ASCII string: '' @@ -4129,12 +4305,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:06 GMT + - Thu, 09 Nov 2023 20:06:32 GMT Set-Cookie: - - BrowserId=B7MiUTF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:06 + - BrowserId=egkeYX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4147,9 +4323,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13624/5000000 + - api-usage=539/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:05 GMT + - Thu, 09 Nov 2023 20:06:31 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4158,13 +4334,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEdqAAF","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:31:51.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001305","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:32:05.000+0000","LastViewedDate":"2023-08-02T21:32:05.000+0000","LastReferencedDate":"2023-08-02T21:32:05.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2qAAF","EffectiveDate":"2023-11-09","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-11-09T20:06:25.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000274","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:06:24.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:31.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:31.000+0000","LastViewedDate":"2023-11-09T20:06:31.000+0000","LastReferencedDate":"2023-11-09T20:06:31.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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_1NameGIsgf92XbAOtZ3vjAEA","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NameGIsgf92XbAOtZ3vjAEA"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DwWAAU","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_1OAeUlIsgf92XbAO2pPTthj7","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeUlIsgf92XbAO2pPTthj7"}' + recorded_at: Thu, 09 Nov 2023 20:06:32 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: UTF-8 string: '{"SBQQ__Contracted__c":true}' @@ -4185,12 +4361,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:07 GMT + - Thu, 09 Nov 2023 20:06:32 GMT Set-Cookie: - - BrowserId=CAn1SzF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:07 + - BrowserId=ehqqkn87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4205,14 +4381,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13636/5000000 + - api-usage=540/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:38 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%278017e000000nR7vAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Contract%20WHERE%20SBQQ__Order__c%20=%20%278016s000001FXyTAAW%27 body: encoding: US-ASCII string: '' @@ -4231,12 +4407,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:09 GMT + - Thu, 09 Nov 2023 20:06:38 GMT Set-Cookie: - - BrowserId=CS3bzjF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:09 + - BrowserId=faRuKn87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4249,7 +4425,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13625/5000000 + - api-usage=536/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4258,11 +4434,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2"},"Id":"8007e000001iCJCAA2"}]}' - 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/8006s0000008JkBAAU"},"Id":"8006s0000008JkBAAU"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:38 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contract/8006s0000008JkBAAU body: encoding: US-ASCII string: '' @@ -4281,12 +4457,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:09 GMT + - Thu, 09 Nov 2023 20:06:38 GMT Set-Cookie: - - BrowserId=CXbMIzF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:09 + - BrowserId=fbKfP387Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4299,9 +4475,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13618/5000000 + - api-usage=534/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:08 GMT + - Thu, 09 Nov 2023 20:06:38 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4310,12 +4486,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2"},"Id":"8007e000001iCJCAA2","AccountId":"0017e00001iaMUOAA2","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":"00000329","LastApprovedDate":null,"CreatedDate":"2023-08-02T21:32:08.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:08.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:08.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":"0067e00000NfEdqAAF","SBQQ__Order__c":"8017e000000nR7vAAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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/8006s0000008JkBAAU"},"Id":"8006s0000008JkBAAU","AccountId":"0016s00000fzBqzAAE","Pricebook2Id":null,"OwnerExpirationNotice":null,"StartDate":"2023-11-09","EndDate":"2024-11-08","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ContractTerm":12,"OwnerId":"0056s000006SKknAAG","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":"00000183","LastApprovedDate":null,"CreatedDate":"2023-11-09T20:06:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:38.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-11-08","SBQQ__MDQRenewalBehavior__c":null,"SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0066s00000CfE2qAAF","SBQQ__Order__c":"8016s000001FXyTAAW","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z6s0000016DwWAAU","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: Thu, 09 Nov 2023 20:06:38 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8007e000001iCJCAA2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=8006s0000008JkBAAU body: encoding: UTF-8 string: "{}" @@ -4336,12 +4512,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:10 GMT + - Thu, 09 Nov 2023 20:06:38 GMT Set-Cookie: - - BrowserId=CbxgZzF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:10 + - BrowserId=fcn3q387Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4359,28 +4535,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2023-08-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002637\",\"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\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001699\",\"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-11-09 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\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-11-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:45 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://connect-saas-89822-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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":6,\"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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002637\",\"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\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":6,\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001699\",\"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-11-09 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\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-11-09\",\"effectiveEndDate\":\"2024-11-08\",\"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 @@ -4398,12 +4574,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:13 GMT + - Thu, 09 Nov 2023 20:06:45 GMT Set-Cookie: - - BrowserId=C3snIzF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:13 + - BrowserId=gh4PAX87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4421,28 +4597,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":720.00,\"netNonSegmentTotal\":720.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002638\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.00,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":720.00,\"SBQQ__NetTotal__c\":720.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0000,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.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\":720.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":720.00,\"netNonSegmentTotal\":720.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001700\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.00,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":720.00,\"SBQQ__NetTotal__c\":720.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0000,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":720.00,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:46 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002638\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.0,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":720.0,\"SBQQ__NetTotal__c\":720.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.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\":720.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001700\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.0,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":720.0,\"SBQQ__NetTotal__c\":720.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":720.0,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -4460,12 +4636,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:15 GMT + - Thu, 09 Nov 2023 20:06:46 GMT Set-Cookie: - - BrowserId=DLrTYDF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:15 + - BrowserId=gryZWH87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4485,18 +4661,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"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/0067e00000NfERzAAN\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\",\"Id\":\"0067e00000NfERzAAN\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMUOAA2\",\"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-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":6.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\":\"0017e00001iaMUOAA2\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-02-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/8007e000001iCJCAA2\"},\"ContractNumber\":\"00000329\",\"Id\":\"8007e000001iCJCAA2\"},\"SBQQ__Opportunity2__c\":\"0067e00000NfERzAAN\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z7e00000BDKasAAH\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"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\":\"a0z7e00000BDKasAAH\",\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":720.0,\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":6.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":720.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/a1B7e00000EX4yPEAT\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"Id\":\"a1B7e00000EX4yPEAT\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4yPEAT\",\"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\":720.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\":6.0,\"Name\":\"QL-0002638\",\"SBQQ__CustomerPrice__c\":720.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\":720.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\":720.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/01t7e000009As7gAAC\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7gAAC\",\"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\":\"01t7e000009As7gAAC\",\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\",\"Id\":\"0066s00000CfE2vAAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBqzAAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":6.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"ContractNumber\":\"00000183\",\"Id\":\"8006s0000008JkBAAU\"},\"SBQQ__Opportunity2__c\":\"0066s00000CfE2vAAF\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z6s0000016DwbAAE\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"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-11-09 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\":\"a0z6s0000016DwbAAE\",\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":720.0,\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__EffectiveSubscriptionTerm__c\":6.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":720.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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"Id\":\"a1B6s000000xyMHEAY\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMHEAY\",\"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\":720.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\":6.0,\"Name\":\"QL-0001700\",\"SBQQ__CustomerPrice__c\":720.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\":720.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\":720.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qoAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE body: encoding: US-ASCII string: '' @@ -4515,12 +4691,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:16 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Set-Cookie: - - BrowserId=DVy43TF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:16 + - BrowserId=gwMX3387Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4533,9 +4709,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13638/5000000 + - api-usage=542/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:15 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4544,15 +4720,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH"},"Id":"a0z7e00000BDKasAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01223","CreatedDate":"2023-08-02T21:32:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:15.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-02T21:32:15.000+0000","LastReferencedDate":"2023-08-02T21:32:15.000+0000","SBQQ__Account__c":"0017e00001iaMUOAA2","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":"2024-08-01","SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":"2023-08-02T21:32:12.000+0000","SBQQ__LastSavedOn__c":"2023-08-02T21:32:15.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":"8007e000001iCJCAA2","SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"0067e00000NfERzAAN","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":null,"SBQQ__PricebookId__c":null,"SBQQ__PrimaryContact__c":null,"SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":12.0,"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":"2024-02-02","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":6.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Amendment","SBQQ__Unopened__c":false,"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":720.0,"SBQQ__ListAmount__c":720.0,"SBQQ__NetAmount__c":720.0,"SBQQ__RegularAmount__c":720.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/a0z6s0000016DwbAAE"},"Id":"a0z6s0000016DwbAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00204","CreatedDate":"2023-11-09T20:06:43.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:47.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T20:06:47.000+0000","LastReferencedDate":"2023-11-09T20:06:47.000+0000","SBQQ__Account__c":"0016s00000fzBqzAAE","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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":"2024-11-08","SBQQ__FirstSegmentTermEndDate__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__Introduction__c":null,"SBQQ__Key__c":null,"SBQQ__LastCalculatedOn__c":"2023-11-09T20:06:45.000+0000","SBQQ__LastSavedOn__c":"2023-11-09T20:06:47.000+0000","SBQQ__LineItemsGrouped__c":false,"SBQQ__LineItemsPrinted__c":true,"SBQQ__MarkupRate__c":null,"SBQQ__MasterContract__c":"8006s0000008JkBAAU","SBQQ__MasterEvergreenContract__c":null,"SBQQ__Notes__c":null,"SBQQ__Opportunity2__c":"0066s00000CfE2vAAF","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":null,"SBQQ__PricebookId__c":null,"SBQQ__PrimaryContact__c":null,"SBQQ__Primary__c":true,"SBQQ__ProrationDayOfMonth__c":null,"SBQQ__QuoteLanguage__c":null,"SBQQ__QuoteProcessId__c":null,"SBQQ__QuoteTemplateId__c":null,"SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2024-05-09","SBQQ__Status__c":"Draft","SBQQ__SubscriptionTerm__c":6.0,"SBQQ__TargetCustomerAmount__c":null,"SBQQ__Type__c":"Amendment","SBQQ__Unopened__c":false,"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-12-09","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":720.0,"SBQQ__ListAmount__c":720.0,"SBQQ__NetAmount__c":720.0,"SBQQ__RegularAmount__c":720.0}' + recorded_at: Thu, 09 Nov 2023 20:06:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDKasAAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DwbAAE%27 body: encoding: US-ASCII string: '' @@ -4571,12 +4747,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:17 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Set-Cookie: - - BrowserId=DarYkDF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:17 + - BrowserId=gxvPv387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4589,7 +4765,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13627/5000000 + - api-usage=545/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4598,11 +4774,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU"},"Id":"a0v7e000008xXsIAAU"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ"},"Id":"a0v6s000000tlePAAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:47 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ body: encoding: US-ASCII string: '' @@ -4621,12 +4797,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:17 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Set-Cookie: - - BrowserId=De-DDDF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:17 + - BrowserId=gyqdJX87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4639,9 +4815,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13620/5000000 + - api-usage=538/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:15 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4650,14 +4826,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU"},"Id":"a0v7e000008xXsIAAU","IsDeleted":false,"Name":"QL-0002638","CreatedDate":"2023-08-02T21:32:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:15.000+0000","SBQQ__Quote__c":"a0z7e00000BDKasAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":720.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":true,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":720.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":720.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.0,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","SBQQ__ProrateMultiplier__c":6.0,"SBQQ__ProratedListPrice__c":720.0,"SBQQ__ProratedPrice__c":720.0,"SBQQ__Quantity__c":2.0,"SBQQ__RegularPrice__c":720.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":"a1B7e00000EX4yPEAT","SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":720.0,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-02-02","SBQQ__EffectiveSubscriptionTerm__c":6.0,"SBQQ__ListTotal__c":720.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":720.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":720.0,"SBQQ__PackageTotal__c":720.0,"SBQQ__PartnerTotal__c":720.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RegularTotal__c":720.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ"},"Id":"a0v6s000000tlePAAQ","IsDeleted":false,"Name":"QL-0001700","CreatedDate":"2023-11-09T20:06:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:47.000+0000","SBQQ__Quote__c":"a0z6s0000016DwbAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":720.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":true,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":720.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":720.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":null,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.0,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","SBQQ__ProrateMultiplier__c":6.0,"SBQQ__ProratedListPrice__c":720.0,"SBQQ__ProratedPrice__c":720.0,"SBQQ__Quantity__c":2.0,"SBQQ__RegularPrice__c":720.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":"a1B6s000000xyMHEAY","SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":720.0,"SBQQ__EffectiveEndDate__c":"2024-11-08","SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2024-05-09","SBQQ__EffectiveSubscriptionTerm__c":6.0,"SBQQ__ListTotal__c":720.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":720.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":720.0,"SBQQ__PackageTotal__c":720.0,"SBQQ__PartnerTotal__c":720.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":720.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 20:06:47 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"26.7% off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":26.7}' @@ -4678,12 +4854,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:17 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Set-Cookie: - - BrowserId=Dj3wPTF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:17 + - BrowserId=g0jTf387Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4696,9 +4872,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13621/5000000 + - api-usage=535/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv6EAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIwEAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -4707,11 +4883,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JFv6EAG","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1R6s000000uvIwEAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:47 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$10 off coupon","Amount_Off__c":10,"Duration__c":"once"}' @@ -4732,12 +4908,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:18 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Set-Cookie: - - BrowserId=DnqsBTF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:18 + - BrowserId=g1r8Gn87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4750,9 +4926,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13623/5000000 + - api-usage=539/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFvBEAW" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ1EAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -4761,14 +4937,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JFvBEAW","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1R6s000000uvJ1EAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:47 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xXsIAAU","Quote_Stripe_Coupon__c":"a1R7e000007JFv6EAG"}' + string: '{"Quote_Line__c":"a0v6s000000tlePAAQ","Quote_Stripe_Coupon__c":"a1R6s000000uvIwEAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -4786,12 +4962,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:18 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Set-Cookie: - - BrowserId=DrzkSjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:18 + - BrowserId=g28gi387Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4804,9 +4980,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13622/5000000 + - api-usage=540/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TWghEAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk7dEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -4815,14 +4991,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TWghEAG","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1P6s000001Bk7dEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:48 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote__c":"a0z7e00000BDKasAAH","Quote_Stripe_Coupon__c":"a1R7e000007JFvBEAW"}' + string: '{"Quote__c":"a0z6s0000016DwbAAE","Quote_Stripe_Coupon__c":"a1R6s000000uvJ1EAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -4840,12 +5016,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:19 GMT + - Thu, 09 Nov 2023 20:06:48 GMT Set-Cookie: - - BrowserId=DwPYcTF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:19 + - BrowserId=g4R8nX87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4858,9 +5034,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13623/5000000 + - api-usage=539/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q7e000007DwBUEA0" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKNDEA4" Content-Type: - application/json;charset=UTF-8 Vary: @@ -4869,21 +5045,21 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1Q7e000007DwBUEA0","success":true,"errors":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1Q6s000001FKNDEA4","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 20:06:48 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://connect-saas-89822-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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":6,\"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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002637\",\"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\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__SubscriptionTerm__c\":6,\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001699\",\"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-11-09 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\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-11-09\",\"effectiveEndDate\":\"2024-11-08\",\"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 @@ -4901,12 +5077,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:19 GMT + - Thu, 09 Nov 2023 20:06:48 GMT Set-Cookie: - - BrowserId=D0aHZjF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:19 + - BrowserId=g5_NHX87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4924,28 +5100,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__ContractingMethod__c\":\"By + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":720.00,\"netNonSegmentTotal\":720.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002638\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.00,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":720.00,\"SBQQ__NetTotal__c\":720.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0000,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.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\":720.00,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":720.00,\"netNonSegmentTotal\":720.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001700\",\"SBQQ__AdditionalDiscount__c\":0.00,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.00,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__NetPrice__c\":720.00,\"SBQQ__NetTotal__c\":720.00,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.00,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.00,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0000,\"SBQQ__Quantity__c\":2.00,\"SBQQ__SpecialPrice__c\":120.00,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.00,\"SBQQ__Uplift__c\":0.00,\"SBQQ__UpliftAmount__c\":0.00,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.00,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":720.00,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:49 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"Id\":\"a0z7e00000BDKasAAH\",\"Name\":\"Q-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0017e00001iaMUOAA2\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-09-01\",\"SBQQ__StartDate__c\":\"2024-02-02\",\"SBQQ__EndDate__c\":\"2024-08-01\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"Id\":\"a0z6s0000016DwbAAE\",\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__SubscriptionTerm__c\":6,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"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\":\"0067e00000NfERzAAN\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"Id\":\"0017e00001iaMUOAA2\",\"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/8007e000001iCJCAA2\"},\"Id\":\"8007e000001iCJCAA2\",\"ContractNumber\":\"00000329\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN\"},\"Id\":\"0067e00000NfERzAAN\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\"},\"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\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDKasAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009As7gAAC\",\"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-0002638\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.0,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":720.0,\"SBQQ__NetTotal__c\":720.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.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\":720.0,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4yPEAT\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC\"},\"Id\":\"01t7e000009As7gAAC\",\"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/a1B7e00000EX4yPEAT\"},\"Id\":\"a1B7e00000EX4yPEAT\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\"},\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"0066s00000CfE2vAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"Id\":\"0016s00000fzBqzAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"Id\":\"8006s0000008JkBAAU\",\"ContractNumber\":\"00000183\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"Id\":\"0066s00000CfE2vAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\"},\"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\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__Quote__c\":\"a0z6s0000016DwbAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-0001700\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__Bundled__c\":false,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__CustomerPrice__c\":720.0,\"SBQQ__EffectiveSubscriptionTerm__c\":6,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__NetPrice__c\":720.0,\"SBQQ__NetTotal__c\":720.0,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Bundle__c\":false,\"SBQQ__PartnerPrice__c\":720.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__ProrateMultiplier__c\":6.0,\"SBQQ__Quantity__c\":2.0,\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__Renewal__c\":false,\"SBQQ__ProratedPrice__c\":720.0,\"SBQQ__Uplift__c\":0.0,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentUpliftedByPackage__c\":false,\"SBQQ__ProductName__c\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__Existing__c\":true,\"SBQQ__PriorQuantity__c\":1.0,\"SBQQ__CarryoverLine__c\":false,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__RegularPrice__c\":720.0,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMHEAY\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"Id\":\"01t6s000004g3qoAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1,\"SBQQ__PricingMethod__c\":\"List\"},\"SBQQ__UpgradedSubscription__r\":{\"attributes\":{\"type\":\"SBQQ__Subscription__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"Id\":\"a1B6s000000xyMHEAY\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\"},\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -4963,12 +5139,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:21 GMT + - Thu, 09 Nov 2023 20:06:49 GMT Set-Cookie: - - BrowserId=EIYy2zF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:21 + - BrowserId=hGTxt387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4988,18 +5164,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH\"},\"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/0067e00000NfERzAAN\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDKasAAH\",\"AccountId\":\"0017e00001iaMUOAA2\",\"Id\":\"0067e00000NfERzAAN\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iaMUOAA2\",\"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-01223\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":6.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\":\"0017e00001iaMUOAA2\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-02-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/8007e000001iCJCAA2\"},\"ContractNumber\":\"00000329\",\"Id\":\"8007e000001iCJCAA2\"},\"SBQQ__Opportunity2__c\":\"0067e00000NfERzAAN\",\"SBQQ__MasterContract__c\":\"8007e000001iCJCAA2\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z7e00000BDKasAAH\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDKasAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xXsIAAU\"},\"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\":\"a0z7e00000BDKasAAH\",\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":720.0,\"Id\":\"a0v7e000008xXsIAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":6.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":720.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/a1B7e00000EX4yPEAT\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v7e000008xXt4AAE\",\"SBQQ__Contract__c\":\"8007e000001iCJCAA2\",\"SBQQ__QuoteLine__c\":\"a0v7e000008xXt4AAE\",\"Id\":\"a1B7e00000EX4yPEAT\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B7e00000EX4yPEAT\",\"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\":720.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\":6.0,\"Name\":\"QL-0002638\",\"SBQQ__CustomerPrice__c\":720.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\":720.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\":720.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/01t7e000009As7gAAC\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009As7gAAC\",\"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\":\"01t7e000009As7gAAC\",\"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-02-02\",\"effectiveEndDate\":\"2024-08-01\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.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\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DwbAAE\",\"AccountId\":\"0016s00000fzBqzAAE\",\"Id\":\"0066s00000CfE2vAAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBqzAAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00204\",\"SBQQ__Type__c\":\"Amendment\",\"SBQQ__SubscriptionTerm__c\":6.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__EndDate__c\":\"2024-11-08\",\"SBQQ__PricebookId__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBqzAAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2024-05-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__MasterContract__r\":{\"attributes\":{\"type\":\"Contract\",\"url\":\"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU\"},\"ContractNumber\":\"00000183\",\"Id\":\"8006s0000008JkBAAU\"},\"SBQQ__Opportunity2__c\":\"0066s00000CfE2vAAF\",\"SBQQ__MasterContract__c\":\"8006s0000008JkBAAU\",\"SBQQ__LineItemCount__c\":1.0,\"Id\":\"a0z6s0000016DwbAAE\",\"SBQQ__Unopened__c\":false,\"SBQQ__RenewalTerm__c\":12.0},\"nextKey\":2,\"netTotal\":720.0,\"netNonSegmentTotal\":720.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DwbAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ\"},\"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-11-09 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\":\"a0z6s0000016DwbAAE\",\"SBQQ__ProratedListPrice__c\":720.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":720.0,\"Id\":\"a0v6s000000tlePAAQ\",\"SBQQ__EffectiveSubscriptionTerm__c\":6.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":720.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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY\"},\"SBQQ__OriginalQuoteLine__c\":\"a0v6s000000tleJAAQ\",\"SBQQ__Contract__c\":\"8006s0000008JkBAAU\",\"SBQQ__QuoteLine__c\":\"a0v6s000000tleJAAQ\",\"Id\":\"a1B6s000000xyMHEAY\"},\"SBQQ__DynamicOptionId__c\":null,\"SBQQ__PreviousSegmentUplift__c\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PreviousSegmentPrice__c\":null,\"SBQQ__UpgradedSubscription__c\":\"a1B6s000000xyMHEAY\",\"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\":720.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\":6.0,\"Name\":\"QL-0001700\",\"SBQQ__CustomerPrice__c\":720.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\":720.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\":720.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qoAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qoAAA\",\"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-05-09\",\"effectiveEndDate\":\"2024-11-08\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":720.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 20:06:49 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://connect-saas-89822-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: '' @@ -5018,12 +5194,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:22 GMT + - Thu, 09 Nov 2023 20:06:50 GMT Set-Cookie: - - BrowserId=EOjsljF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:22 + - BrowserId=hKoRg387Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5036,7 +5212,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13624/5000000 + - api-usage=540/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5045,14 +5221,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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:50 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE body: encoding: UTF-8 - string: '{"SBQQ__PricebookId__c":"01s7e000002eLFEAA2"}' + string: '{"SBQQ__PricebookId__c":"01s6s000002xdpsAAA"}' headers: User-Agent: - Faraday v2.4.0 @@ -5070,12 +5246,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:22 GMT + - Thu, 09 Nov 2023 20:06:50 GMT Set-Cookie: - - BrowserId=ESgYgjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:22 + - BrowserId=hLcw5X87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5090,14 +5266,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13625/5000000 + - api-usage=541/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:51 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -5118,12 +5294,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:24 GMT + - Thu, 09 Nov 2023 20:06:51 GMT Set-Cookie: - - BrowserId=EjjrkzF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:24 + - BrowserId=habn6387Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5138,14 +5314,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13639/5000000 + - api-usage=543/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:53 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -5164,12 +5340,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:26 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Set-Cookie: - - BrowserId=Ez4njDF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:26 + - BrowserId=ho1QnH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5182,7 +5358,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13624/5000000 + - api-usage=542/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5191,12 +5367,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nR80AAE"},"Id":"8017e000000nR80AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfERzAAN","EffectiveDate":"2024-02-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":"00001306","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:32:25.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:25.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:32:25.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z7e00000BDKasAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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/8016s000001FXyYAAW"},"Id":"8016s000001FXyYAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2vAAF","EffectiveDate":"2024-05-09","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":"00000275","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:06:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:52.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:52.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":"a0z6s0000016DwbAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:53 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR80AAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyYAAW body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -5217,12 +5393,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:26 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Set-Cookie: - - BrowserId=E3psfDF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:26 + - BrowserId=hpySY387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5237,14 +5413,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13640/5000000 + - api-usage=540/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:53 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR80AAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyYAAW body: encoding: US-ASCII string: '' @@ -5263,12 +5439,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:27 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Set-Cookie: - - BrowserId=E_Z6VDF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:27 + - BrowserId=hvuiaX87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5281,9 +5457,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13626/5000000 + - api-usage=537/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:26 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5292,13 +5468,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE"},"Id":"8017e000000nR80AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfERzAAN","EffectiveDate":"2024-02-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-02T21:32:26.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001306","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:32:25.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:32:26.000+0000","LastViewedDate":"2023-08-02T21:32:26.000+0000","LastReferencedDate":"2023-08-02T21:32:26.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyYAAW"},"Id":"8016s000001FXyYAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2vAAF","EffectiveDate":"2024-05-09","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-11-09T20:06:53.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000275","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:06:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:53.000+0000","LastViewedDate":"2023-11-09T20:06:53.000+0000","LastReferencedDate":"2023-11-09T20:06:53.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":"a0z7e00000BDKasAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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":"a0z6s0000016DwbAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:06:54 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR80AAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyYAAW body: encoding: US-ASCII string: '' @@ -5317,12 +5493,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:28 GMT + - Thu, 09 Nov 2023 20:06:54 GMT Set-Cookie: - - BrowserId=FDnsCzF8Ee6k5hleTULIAw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:28 + - BrowserId=hxWSoX87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5335,9 +5511,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13622/5000000 + - api-usage=541/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:26 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5346,16 +5522,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE"},"Id":"8017e000000nR80AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfERzAAN","EffectiveDate":"2024-02-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-02T21:32:26.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001306","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:32:25.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:32:26.000+0000","LastViewedDate":"2023-08-02T21:32:27.000+0000","LastReferencedDate":"2023-08-02T21:32:27.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyYAAW"},"Id":"8016s000001FXyYAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2vAAF","EffectiveDate":"2024-05-09","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-11-09T20:06:53.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000275","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:06:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:53.000+0000","LastViewedDate":"2023-11-09T20:06:53.000+0000","LastReferencedDate":"2023-11-09T20:06:53.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":"a0z7e00000BDKasAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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":"a0z6s0000016DwbAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:06:54 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR80AAE"]}' + string: '{"order_ids":["8016s000001FXyYAAW"]}' headers: User-Agent: - Faraday v2.4.0 @@ -5373,12 +5549,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:28 GMT + - Thu, 09 Nov 2023 20:06:54 GMT Set-Cookie: - - BrowserId=FH2r0DF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:28 + - BrowserId=hyaDQ387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5398,39 +5574,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN"},"Id":"0067e00000NfERzAAN","IsDeleted":false,"AccountId":"0017e00001iaMUOAA2","IsPrivate":false,"Name":"Amendment - for contract #00000329","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:11.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:32:11.000+0000","LastReferencedDate":"2023-08-02T21:32:11.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCJCAA2","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKasAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2"},"Id":"0017e00001iaMUOAA2","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:56.000+0000","LastViewedDate":"2023-08-02T21:31:56.000+0000","LastReferencedDate":"2023-08-02T21:31:56.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_ONXjffuNL3yAsF","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONXjffuNL3yAsF"},{"Accounts":["0017e00001iaMUOAA2"],"Opportunities":["0067e00000NfERzAAN"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-02-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":"0067e00000NfERzAAN","SBQQ__MasterContract__c":"8007e000001iCJCAA2","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:32:24.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-02T21:32:12.000+0000","SBQQ__EndDate__c":"2024-08-01","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF"},"Id":"0066s00000CfE2vAAF","IsDeleted":false,"AccountId":"0016s00000fzBqzAAE","IsPrivate":false,"Name":"Amendment + for contract #00000183","StageName":"Prospecting","Probability":10,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:43.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:43.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:43.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:06:43.000+0000","LastReferencedDate":"2023-11-09T20:06:43.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8006s0000008JkBAAU","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwbAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE"},"Id":"0016s00000fzBqzAAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:27.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:27.000+0000","LastViewedDate":"2023-11-09T20:06:27.000+0000","LastReferencedDate":"2023-11-09T20:06:27.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_OybiNZbftqIZ1W","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OybiNZbftqIZ1W"},{"Accounts":["0016s00000fzBqzAAE"],"Opportunities":["0066s00000CfE2vAAF"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-12-09","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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-05-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE2vAAF","SBQQ__MasterContract__c":"8006s0000008JkBAAU","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T20:06:51.000+0000","SBQQ__LastCalculatedOn__c":"2023-11-09T20:06:45.000+0000","SBQQ__EndDate__c":"2024-11-08","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":"0017e00001iaMUOAA2","LastReferencedDate":"2023-08-02T21:32:24.000+0000","LastViewedDate":"2023-08-02T21:32:24.000+0000","SystemModstamp":"2023-08-02T21:32:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:24.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:11.000+0000","Name":"Q-01223","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKasAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC"},"Id":"01t7e000009As7gAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:31:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:03.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-02T21:32:00.000+0000","LastReferencedDate":"2023-08-02T21:32:00.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBqzAAE","LastReferencedDate":"2023-11-09T20:06:51.000+0000","LastViewedDate":"2023-11-09T20:06:51.000+0000","SystemModstamp":"2023-11-09T20:06:51.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:51.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:43.000+0000","Name":"Q-00204","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DwbAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA"},"Id":"01t6s000004g3qoAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:28.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:30.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-11-09T20:06:28.000+0000","LastReferencedDate":"2023-11-09T20:06:28.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_ONXj2SLLbrOhMy","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXj2SLLbrOhMy"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjgEAAR"},"Id":"01u7e00000IsjgEAAR","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7gAAC","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:31:39.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:03.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:03.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NameEIsgf92XbAORdsSCVw2","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NameEIsgf92XbAORdsSCVw2"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2"},"Id":"8007e000001iCJCAA2","AccountId":"0017e00001iaMUOAA2","StartDate":"2023-08-02","EndDate":"2024-08-01","BillingAddress":null,"ContractTerm":12,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000329","CreatedDate":"2023-08-02T21:32:08.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:08.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:08.000+0000","LastViewedDate":"2023-08-02T21:32:10.000+0000","LastReferencedDate":"2023-08-02T21:32:10.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":"0067e00000NfEdqAAF","SBQQ__Order__c":"8017e000000nR7vAAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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/a0v7e000008xXsIAAU"},"Id":"a0v7e000008xXsIAAU","IsDeleted":false,"Name":"QL-0002638","CreatedDate":"2023-08-02T21:32:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:24.000+0000","SBQQ__Quote__c":"a0z7e00000BDKasAAH","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IsjgEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B7e00000EX4yPEAT","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-02-02","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RegularTotal__c":720.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/a0v7e000008xXt4AAE"},"Id":"a0v7e000008xXt4AAE","IsDeleted":false,"Name":"QL-0002636","CreatedDate":"2023-08-02T21:31:48.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:48.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:48.000+0000","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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":"01u7e00000IsjgEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","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/a1B7e00000EX4yPEAT"},"Id":"a1B7e00000EX4yPEAT","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000286","CreatedDate":"2023-08-02T21:32:08.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:08.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:08.000+0000","SBQQ__Account__c":"0017e00001iaMUOAA2","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCJCAA2","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":"8027e000001bQelAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xXt4AAE","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt4AAE","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX4yPEAT","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-02","SBQQ__ContractNumber__c":"00000329","SBQQ__EndDate__c":"2024-08-01","SBQQ__ProductId__c":"01t7e000009As7g","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009As7g","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009As7gAAC"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQelAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXsIAAU","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000001328","SystemModstamp":"2023-08-02T21:32:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:27.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:25.000+0000","EndDate":"2024-08-01","ServiceDate":"2024-02-02","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjgEAAR","OrderId":"8017e000000nR80AAE","IsDeleted":false,"Product2Id":"01t7e000009As7gAAC","Id":"8027e000001bQeqAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQeqAAE","type":"OrderItem"}},{"Contracts":["8007e000001iCJCAA2"],"PricebookEntries":[],"Products":["01t7e000009As7gAAC"],"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":"a1B7e00000EX4yPEAT","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":"a0v7e000008xXt4AAE","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":"8007e000001iCJCAA2","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001327","SystemModstamp":"2023-08-02T21:32:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:09.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:50.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":"01u7e00000IsjgEAAR","OrderId":"8017e000000nR7vAAE","IsDeleted":false,"Product2Id":"01t7e000009As7gAAC","Id":"8027e000001bQelAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQelAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEdqAAF"},"Id":"0067e00000NfEdqAAF","IsDeleted":false,"AccountId":"0017e00001iaMUOAA2","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:31:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:41.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:31:40.000+0000","LastReferencedDate":"2023-08-02T21:31:40.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKZbAAP","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":["0067e00000NfERzAAN"],"Accounts":["0017e00001iaMUOAA2"],"OrderItems":["8027e000001bQeqAAE"],"Quotes":["a0z7e00000BDKasAAH"],"InitialOrderQuotes":["a0z7e00000BDKZbAAP"],"InitialOrderId":["8017e000000nR7vAAE"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","Id":"8007e000001iCJCAA2","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCJCAA2","Id":"0067e00000NfERzAAN","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z7e00000BDKasAAH","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OybiA5XG5yrvmh","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OybiA5XG5yrvmh"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRaAAK"},"Id":"01u6s000006MyRaAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qoAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:30.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:30.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1OAeUjIsgf92XbAOndJycPiW","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1OAeUjIsgf92XbAOndJycPiW"},{"attributes":{"type":"Contract","url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU"},"Id":"8006s0000008JkBAAU","AccountId":"0016s00000fzBqzAAE","StartDate":"2023-11-09","EndDate":"2024-11-08","BillingAddress":null,"ContractTerm":12,"OwnerId":"0056s000006SKknAAG","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000183","CreatedDate":"2023-11-09T20:06:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:38.000+0000","LastViewedDate":"2023-11-09T20:06:38.000+0000","LastReferencedDate":"2023-11-09T20:06:38.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-11-08","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0066s00000CfE2qAAF","SBQQ__Order__c":"8016s000001FXyTAAW","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z6s0000016DwWAAU","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/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ"},"Id":"a0v6s000000tlePAAQ","IsDeleted":false,"Name":"QL-0001700","CreatedDate":"2023-11-09T20:06:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:51.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:51.000+0000","SBQQ__Quote__c":"a0z6s0000016DwbAAE","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRaAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B6s000000xyMHEAY","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-11-08","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-05-09","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":720.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tleJAAQ"},"Id":"a0v6s000000tleJAAQ","IsDeleted":false,"Name":"QL-0001698","CreatedDate":"2023-11-09T20:06:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:23.000+0000","SBQQ__Quote__c":"a0z6s0000016DwWAAU","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":"01u6s000006MyRaAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","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-11-09","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-11-09 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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY"},"Id":"a1B6s000000xyMHEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"SUB-0000361","CreatedDate":"2023-11-09T20:06:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:37.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:37.000+0000","SBQQ__Account__c":"0016s00000fzBqzAAE","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8006s0000008JkBAAU","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":"8026s0000014MvsAAE","SBQQ__OriginalQuoteLine__c":"a0v6s000000tleJAAQ","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v6s000000tleJAAQ","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B6s000000xyMHEAY","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-11-09","SBQQ__ContractNumber__c":"00000183","SBQQ__EndDate__c":"2024-11-08","SBQQ__ProductId__c":"01t6s000004g3qo","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t6s000004g3qo","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t6s000004g3qoAAA"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8026s0000014MvsAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlePAAQ","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000000504","SystemModstamp":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:52.000+0000","EndDate":"2024-11-08","ServiceDate":"2024-05-09","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRaAAK","OrderId":"8016s000001FXyYAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qoAAA","Id":"8026s0000014MvxAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvxAAE","type":"OrderItem"}},{"Contracts":["8006s0000008JkBAAU"],"PricebookEntries":[],"Products":["01t6s000004g3qoAAA"],"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":"a1B6s000000xyMHEAY","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":"a0v6s000000tleJAAQ","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":"8006s0000008JkBAAU","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000503","SystemModstamp":"2023-11-09T20:06:38.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:38.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:24.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRaAAK","OrderId":"8016s000001FXyTAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qoAAA","Id":"8026s0000014MvsAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvsAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF"},"Id":"0066s00000CfE2qAAF","IsDeleted":false,"AccountId":"0016s00000fzBqzAAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:17.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:06:16.000+0000","LastReferencedDate":"2023-11-09T20:06:16.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwWAAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE2vAAF"],"Accounts":["0016s00000fzBqzAAE"],"OrderItems":["8026s0000014MvxAAE"],"Quotes":["a0z6s0000016DwbAAE"],"InitialOrderQuotes":["a0z6s0000016DwWAAU"],"InitialOrderId":["8016s000001FXyTAAW"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z6s0000016DwWAAU","Id":"8006s0000008JkBAAU","attributes":{"url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU","type":"Contract"}},"SBQQ__AmendedContract__c":"8006s0000008JkBAAU","Id":"0066s00000CfE2vAAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z6s0000016DwbAAE","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:32:28.000+0000","LastViewedDate":"2023-08-02T21:32:28.000+0000","SystemModstamp":"2023-08-02T21:32:26.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:26.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:25.000+0000","TotalAmount":720.00,"OrderNumber":"00001306","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:32:26.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-02-02","OpportunityId":"0067e00000NfERzAAN","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR80AAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEdqAAF"],"Accounts":["0017e00001iaMUOAA2"],"OrderItems":["8027e000001bQelAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Stripe_ID__c":"sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T20:06:54.000+0000","LastViewedDate":"2023-11-09T20:06:54.000+0000","SystemModstamp":"2023-11-09T20:06:53.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:52.000+0000","TotalAmount":720.00,"OrderNumber":"00000275","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:06:53.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-05-09","OpportunityId":"0066s00000CfE2vAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyYAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyYAAW","type":"Order"}},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE2qAAF"],"Accounts":["0016s00000fzBqzAAE"],"OrderItems":["8026s0000014MvsAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeUlIsgf92XbAO2pPTthj7","Stripe_ID__c":"sub_sched_1OAeUlIsgf92XbAO2pPTthj7","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z6s0000016DwWAAU","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:32:07.000+0000","LastViewedDate":"2023-08-02T21:32:07.000+0000","SystemModstamp":"2023-08-02T21:32:07.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:07.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:49.000+0000","TotalAmount":1440.00,"OrderNumber":"00001305","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:31:51.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEdqAAF","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7vAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-11-09T20:06:32.000+0000","LastViewedDate":"2023-11-09T20:06:32.000+0000","SystemModstamp":"2023-11-09T20:06:32.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:32.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:24.000+0000","TotalAmount":1440.00,"OrderNumber":"00000274","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:06:25.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE2qAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyTAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyTAAW","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 @@ -5447,10 +5623,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: Thu, 09 Nov 2023 20:06:55 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%278017e000000nR80AAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyYAAW%27%0A body: encoding: US-ASCII string: '' @@ -5469,12 +5645,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:30 GMT + - Thu, 09 Nov 2023 20:06:55 GMT Set-Cookie: - - BrowserId=FaR4wjF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:30 + - BrowserId=iCgUxX87Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5487,7 +5663,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13651/5000000 + - api-usage=542/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5496,11 +5672,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE"},"Type":"Amendment","OpportunityId":"0067e00000NfERzAAN","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN"},"SBQQ__AmendedContract__c":"8007e000001iCJCAA2"}}]}' - 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/8016s000001FXyYAAW"},"Type":"Amendment","OpportunityId":"0066s00000CfE2vAAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE2vAAF"},"SBQQ__AmendedContract__c":"8006s0000008JkBAAU"}}]}' + recorded_at: Thu, 09 Nov 2023 20:06:55 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%278017e000000nR80AAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyYAAW%27%0A body: encoding: US-ASCII string: '' @@ -5519,12 +5695,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:30 GMT + - Thu, 09 Nov 2023 20:06:56 GMT Set-Cookie: - - BrowserId=FeVSTTF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:30 + - BrowserId=iDcIuH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5537,7 +5713,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13655/5000000 + - api-usage=538/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5546,11 +5722,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE"},"OpportunityId":"0067e00000NfERzAAN","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN"},"SBQQ__AmendedContract__c":"8007e000001iCJCAA2","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2"},"SBQQ__Quote__c":"a0z7e00000BDKZbAAP"}}}]}' - 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/8016s000001FXyYAAW"},"OpportunityId":"0066s00000CfE2vAAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE2vAAF"},"SBQQ__AmendedContract__c":"8006s0000008JkBAAU","SBQQ__AmendedContract__r":{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8006s0000008JkBAAU"},"SBQQ__Quote__c":"a0z6s0000016DwWAAU"}}}]}' + recorded_at: Thu, 09 Nov 2023 20:06:56 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%27a0z7e00000BDKZbAAP%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20Order%0AWHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DwWAAU%27%0A body: encoding: US-ASCII string: '' @@ -5569,12 +5745,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:31 GMT + - Thu, 09 Nov 2023 20:06:56 GMT Set-Cookie: - - BrowserId=Fik46zF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:31 + - BrowserId=iEcOZn87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5587,7 +5763,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13652/5000000 + - api-usage=544/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5596,11 +5772,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE"}]}' - 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/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:56 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%278007e000001iCJCAA2%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20FIELDS(ALL)%20FROM%20Order%0AWHERE%20Opportunity.SBQQ__AmendedContract__c%20=%20%278006s0000008JkBAAU%27%0AORDER%20BY%20SBQQ__Quote__r.SBQQ__StartDate__c,%20LastModifiedDate%20ASC%20LIMIT%20200%0A body: encoding: US-ASCII string: '' @@ -5619,12 +5795,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:31 GMT + - Thu, 09 Nov 2023 20:06:56 GMT Set-Cookie: - - BrowserId=Fm1uXTF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:31 + - BrowserId=iFbsun87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5637,7 +5813,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13654/5000000 + - api-usage=547/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5646,16 +5822,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE"},"Id":"8017e000000nR80AAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfERzAAN","EffectiveDate":"2024-02-02","EndDate":null,"IsReductionOrder":false,"Status":"Activated","Description":null,"CustomerAuthorizedById":null,"CustomerAuthorizedDate":null,"CompanyAuthorizedById":null,"CompanyAuthorizedDate":null,"Type":"Amendment","BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Name":null,"PoDate":null,"PoNumber":null,"OrderReferenceNumber":null,"BillToContactId":null,"ShipToContactId":null,"ActivatedDate":"2023-08-02T21:32:26.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001306","TotalAmount":720.0,"CreatedDate":"2023-08-02T21:32:25.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:32:26.000+0000","LastViewedDate":"2023-08-02T21:32:28.000+0000","LastReferencedDate":"2023-08-02T21:32:28.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/8016s000001FXyYAAW"},"Id":"8016s000001FXyYAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2vAAF","EffectiveDate":"2024-05-09","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-11-09T20:06:53.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000275","TotalAmount":720.0,"CreatedDate":"2023-11-09T20:06:52.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:53.000+0000","LastViewedDate":"2023-11-09T20:06:54.000+0000","LastReferencedDate":"2023-11-09T20:06: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":"a0z7e00000BDKasAAH","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.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":"a0z6s0000016DwbAAE","SBQQ__RenewalTerm__c":12.0,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":720.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:56 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nR80AAE"]}' + string: '{"order_ids":["8016s000001FXyYAAW"]}' headers: User-Agent: - Faraday v2.4.0 @@ -5673,12 +5849,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:32 GMT + - Thu, 09 Nov 2023 20:06:56 GMT Set-Cookie: - - BrowserId=FrqjKDF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:32 + - BrowserId=iHN1bX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:56 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5698,39 +5874,39 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN"},"Id":"0067e00000NfERzAAN","IsDeleted":false,"AccountId":"0017e00001iaMUOAA2","IsPrivate":false,"Name":"Amendment - for contract #00000329","StageName":"Prospecting","Probability":10,"CloseDate":"2023-08-02","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:11.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:32:11.000+0000","LastReferencedDate":"2023-08-02T21:32:11.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8007e000001iCJCAA2","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKasAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iaMUOAA2"},"Id":"0017e00001iaMUOAA2","IsDeleted":false,"Name":"REST - Account 2023-08-02 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:56.000+0000","LastViewedDate":"2023-08-02T21:31:56.000+0000","LastReferencedDate":"2023-08-02T21:31:56.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_ONXjffuNL3yAsF","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ONXjffuNL3yAsF"},{"Accounts":["0017e00001iaMUOAA2"],"Opportunities":["0067e00000NfERzAAN"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-02-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":"0067e00000NfERzAAN","SBQQ__MasterContract__c":"8007e000001iCJCAA2","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-02T21:32:24.000+0000","SBQQ__LastCalculatedOn__c":"2023-08-02T21:32:12.000+0000","SBQQ__EndDate__c":"2024-08-01","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF"},"Id":"0066s00000CfE2vAAF","IsDeleted":false,"AccountId":"0016s00000fzBqzAAE","IsPrivate":false,"Name":"Amendment + for contract #00000183","StageName":"Prospecting","Probability":10,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Pipeline","ForecastCategoryName":"Pipeline","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:43.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:43.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:43.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:06:43.000+0000","LastReferencedDate":"2023-11-09T20:06:43.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__AmendedContract__c":"8006s0000008JkBAAU","SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwbAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBqzAAE"},"Id":"0016s00000fzBqzAAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:27.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:27.000+0000","LastViewedDate":"2023-11-09T20:06:27.000+0000","LastReferencedDate":"2023-11-09T20:06:27.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_OybiNZbftqIZ1W","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OybiNZbftqIZ1W"},{"Accounts":["0016s00000fzBqzAAE"],"Opportunities":["0066s00000CfE2vAAF"],"SBQQ__RegularAmount__c":720.00,"SBQQ__NetAmount__c":720.00,"SBQQ__ListAmount__c":720.00,"SBQQ__CustomerAmount__c":720.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-12-09","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":6,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2024-05-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__RenewalTerm__c":12,"SBQQ__Primary__c":true,"SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE2vAAF","SBQQ__MasterContract__c":"8006s0000008JkBAAU","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T20:06:51.000+0000","SBQQ__LastCalculatedOn__c":"2023-11-09T20:06:45.000+0000","SBQQ__EndDate__c":"2024-11-08","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":"0017e00001iaMUOAA2","LastReferencedDate":"2023-08-02T21:32:24.000+0000","LastViewedDate":"2023-08-02T21:32:24.000+0000","SystemModstamp":"2023-08-02T21:32:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:24.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:11.000+0000","Name":"Q-01223","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDKasAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKasAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009As7gAAC"},"Id":"01t7e000009As7gAAC","Name":"REST - Product2 2023-08-02 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-02T21:31:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:03.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-02T21:32:00.000+0000","LastReferencedDate":"2023-08-02T21:32:00.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBqzAAE","LastReferencedDate":"2023-11-09T20:06:51.000+0000","LastViewedDate":"2023-11-09T20:06:51.000+0000","SystemModstamp":"2023-11-09T20:06:51.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:51.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:43.000+0000","Name":"Q-00204","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DwbAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwbAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qoAAA"},"Id":"01t6s000004g3qoAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T20:06:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:28.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:30.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-11-09T20:06:28.000+0000","LastReferencedDate":"2023-11-09T20:06:28.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_ONXj2SLLbrOhMy","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ONXj2SLLbrOhMy"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000IsjgEAAR"},"Id":"01u7e00000IsjgEAAR","Name":"REST - Product2 2023-08-02 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009As7gAAC","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-02T21:31:39.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:03.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:03.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NameEIsgf92XbAORdsSCVw2","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NameEIsgf92XbAORdsSCVw2"},{"attributes":{"type":"Contract","url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2"},"Id":"8007e000001iCJCAA2","AccountId":"0017e00001iaMUOAA2","StartDate":"2023-08-02","EndDate":"2024-08-01","BillingAddress":null,"ContractTerm":12,"OwnerId":"0057e00000VZBcyAAH","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000329","CreatedDate":"2023-08-02T21:32:08.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:08.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:08.000+0000","LastViewedDate":"2023-08-02T21:32:10.000+0000","LastReferencedDate":"2023-08-02T21:32:10.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":"0067e00000NfEdqAAF","SBQQ__Order__c":"8017e000000nR7vAAE","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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/a0v7e000008xXsIAAU"},"Id":"a0v7e000008xXsIAAU","IsDeleted":false,"Name":"QL-0002638","CreatedDate":"2023-08-02T21:32:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:24.000+0000","SBQQ__Quote__c":"a0z7e00000BDKasAAH","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000IsjgEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B7e00000EX4yPEAT","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-08-01","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-02-02","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RegularTotal__c":720.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/a0v7e000008xXt4AAE"},"Id":"a0v7e000008xXt4AAE","IsDeleted":false,"Name":"QL-0002636","CreatedDate":"2023-08-02T21:31:48.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:48.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:48.000+0000","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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":"01u7e00000IsjgEAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","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/a1B7e00000EX4yPEAT"},"Id":"a1B7e00000EX4yPEAT","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"SUB-0000286","CreatedDate":"2023-08-02T21:32:08.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:08.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:08.000+0000","SBQQ__Account__c":"0017e00001iaMUOAA2","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8007e000001iCJCAA2","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":"8027e000001bQelAAE","SBQQ__OriginalQuoteLine__c":"a0v7e000008xXt4AAE","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009As7gAAC","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v7e000008xXt4AAE","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B7e00000EX4yPEAT","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionStartDate__c":"2023-08-02","SBQQ__ContractNumber__c":"00000329","SBQQ__EndDate__c":"2024-08-01","SBQQ__ProductId__c":"01t7e000009As7g","SBQQ__ProductName__c":"REST - Product2 2023-08-02 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t7e000009As7g","SBQQ__StartDate__c":"2023-08-02","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t7e000009As7gAAC"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8027e000001bQelAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xXsIAAU","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000001328","SystemModstamp":"2023-08-02T21:32:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:27.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:25.000+0000","EndDate":"2024-08-01","ServiceDate":"2024-02-02","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000IsjgEAAR","OrderId":"8017e000000nR80AAE","IsDeleted":false,"Product2Id":"01t7e000009As7gAAC","Id":"8027e000001bQeqAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQeqAAE","type":"OrderItem"}},{"Contracts":["8007e000001iCJCAA2"],"PricebookEntries":[],"Products":["01t7e000009As7gAAC"],"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":"a1B7e00000EX4yPEAT","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":"a0v7e000008xXt4AAE","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":"8007e000001iCJCAA2","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000001327","SystemModstamp":"2023-08-02T21:32:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:09.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:50.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":"01u7e00000IsjgEAAR","OrderId":"8017e000000nR7vAAE","IsDeleted":false,"Product2Id":"01t7e000009As7gAAC","Id":"8027e000001bQelAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bQelAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfEdqAAF"},"Id":"0067e00000NfEdqAAF","IsDeleted":false,"AccountId":"0017e00001iaMUOAA2","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:31:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:41.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-02T21:31:40.000+0000","LastReferencedDate":"2023-08-02T21:31:40.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDKZbAAP","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":["0067e00000NfERzAAN"],"Accounts":["0017e00001iaMUOAA2"],"OrderItems":["8027e000001bQeqAAE"],"Quotes":["a0z7e00000BDKasAAH"],"InitialOrderQuotes":["a0z7e00000BDKZbAAP"],"InitialOrderId":["8017e000000nR7vAAE"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","Id":"8007e000001iCJCAA2","attributes":{"url":"/services/data/v58.0/sobjects/Contract/8007e000001iCJCAA2","type":"Contract"}},"SBQQ__AmendedContract__c":"8007e000001iCJCAA2","Id":"0067e00000NfERzAAN","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NfERzAAN","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z7e00000BDKasAAH","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OybiA5XG5yrvmh","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OybiA5XG5yrvmh"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRaAAK"},"Id":"01u6s000006MyRaAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qoAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:30.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:30.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1OAeUjIsgf92XbAOndJycPiW","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1OAeUjIsgf92XbAOndJycPiW"},{"attributes":{"type":"Contract","url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU"},"Id":"8006s0000008JkBAAU","AccountId":"0016s00000fzBqzAAE","StartDate":"2023-11-09","EndDate":"2024-11-08","BillingAddress":null,"ContractTerm":12,"OwnerId":"0056s000006SKknAAG","Status":"Draft","StatusCode":"Draft","IsDeleted":false,"ContractNumber":"00000183","CreatedDate":"2023-11-09T20:06:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:38.000+0000","LastViewedDate":"2023-11-09T20:06:38.000+0000","LastReferencedDate":"2023-11-09T20:06:38.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-11-08","SBQQ__MasterContract__c":false,"SBQQ__Opportunity__c":"0066s00000CfE2qAAF","SBQQ__Order__c":"8016s000001FXyTAAW","SBQQ__PreserveBundleStructureUponRenewals__c":true,"SBQQ__Quote__c":"a0z6s0000016DwWAAU","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/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlePAAQ"},"Id":"a0v6s000000tlePAAQ","IsDeleted":false,"Name":"QL-0001700","CreatedDate":"2023-11-09T20:06:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:51.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:51.000+0000","SBQQ__Quote__c":"a0z6s0000016DwbAAE","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":720.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":720.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":720.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRaAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":1.00,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","SBQQ__ProrateMultiplier__c":6.0000,"SBQQ__ProratedListPrice__c":720.00,"SBQQ__ProratedPrice__c":720.00,"SBQQ__Quantity__c":2.00,"SBQQ__RegularPrice__c":720.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":"a1B6s000000xyMHEAY","SBQQ__UpliftAmount__c":0.00,"SBQQ__Uplift__c":0.00,"SBQQ__AdditionalDiscount__c":0.00,"SBQQ__CustomerTotal__c":720.00,"SBQQ__EffectiveEndDate__c":"2024-11-08","SBQQ__EffectiveQuantity__c":1.00,"SBQQ__EffectiveStartDate__c":"2024-05-09","SBQQ__EffectiveSubscriptionTerm__c":6,"SBQQ__ListTotal__c":720.00,"SBQQ__Markup__c":0.00,"SBQQ__NetTotal__c":720.00,"SBQQ__PackageCost__c":0.00,"SBQQ__PackageListTotal__c":720.00,"SBQQ__PackageTotal__c":720.00,"SBQQ__PartnerTotal__c":720.00,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":720.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tleJAAQ"},"Id":"a0v6s000000tleJAAQ","IsDeleted":false,"Name":"QL-0001698","CreatedDate":"2023-11-09T20:06:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:23.000+0000","SBQQ__Quote__c":"a0z6s0000016DwWAAU","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":"01u6s000006MyRaAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","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-11-09","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-11-09 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/v59.0/sobjects/SBQQ__Subscription__c/a1B6s000000xyMHEAY"},"Id":"a1B6s000000xyMHEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"SUB-0000361","CreatedDate":"2023-11-09T20:06:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:37.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:37.000+0000","SBQQ__Account__c":"0016s00000fzBqzAAE","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Bundle__c":false,"SBQQ__Bundled__c":false,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__Contract__c":"8006s0000008JkBAAU","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":"8026s0000014MvsAAE","SBQQ__OriginalQuoteLine__c":"a0v6s000000tleJAAQ","SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qoAAA","SBQQ__ProrateMultiplier__c":12.0000,"SBQQ__Quantity__c":1.00,"SBQQ__QuoteLine__c":"a0v6s000000tleJAAQ","SBQQ__RegularPrice__c":1440.00,"SBQQ__RenewalPrice__c":120.00,"SBQQ__RenewalQuantity__c":1.00,"SBQQ__RootId__c":"a1B6s000000xyMHEAY","SBQQ__SpecialPrice__c":120.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionStartDate__c":"2023-11-09","SBQQ__ContractNumber__c":"00000183","SBQQ__EndDate__c":"2024-11-08","SBQQ__ProductId__c":"01t6s000004g3qo","SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RenewalProductId__c":"01t6s000004g3qo","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionType__c":"Renewable"},{"PricebookEntries":[],"Products":["01t6s000004g3qoAAA"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Line_Item__c":false,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__OrderProductBookings__c":720.00,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__Status__c":"Activated","SBQQ__RevisedOrderProduct__c":"8026s0000014MvsAAE","SBQQ__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlePAAQ","SBQQ__ProrateMultiplier__c":6.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":true,"OrderItemNumber":"0000000504","SystemModstamp":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:52.000+0000","EndDate":"2024-11-08","ServiceDate":"2024-05-09","TotalPrice":720.00,"ListPrice":120.00,"UnitPrice":720.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRaAAK","OrderId":"8016s000001FXyYAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qoAAA","Id":"8026s0000014MvxAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvxAAE","type":"OrderItem"}},{"Contracts":["8006s0000008JkBAAU"],"PricebookEntries":[],"Products":["01t6s000004g3qoAAA"],"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":"a1B6s000000xyMHEAY","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":"a0v6s000000tleJAAQ","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":"8006s0000008JkBAAU","SBQQ__ContractAction__c":"New","SBQQ__BookingsIndicator__c":"Include","SBQQ__BillingFrequency__c":"Monthly","SBQQ__Activated__c":true,"OrderItemNumber":"0000000503","SystemModstamp":"2023-11-09T20:06:38.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:38.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:24.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRaAAK","OrderId":"8016s000001FXyTAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qoAAA","Id":"8026s0000014MvsAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvsAAE","type":"OrderItem"}},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2qAAF"},"Id":"0066s00000CfE2qAAF","IsDeleted":false,"AccountId":"0016s00000fzBqzAAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:17.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T20:06:16.000+0000","LastReferencedDate":"2023-11-09T20:06:16.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DwWAAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE2vAAF"],"Accounts":["0016s00000fzBqzAAE"],"OrderItems":["8026s0000014MvxAAE"],"Quotes":["a0z6s0000016DwbAAE"],"InitialOrderQuotes":["a0z6s0000016DwWAAU"],"InitialOrderId":["8016s000001FXyTAAW"],"Opportunity":{"SBQQ__AmendedContract__r":{"SBQQ__Quote__c":"a0z6s0000016DwWAAU","Id":"8006s0000008JkBAAU","attributes":{"url":"/services/data/v59.0/sobjects/Contract/8006s0000008JkBAAU","type":"Contract"}},"SBQQ__AmendedContract__c":"8006s0000008JkBAAU","Id":"0066s00000CfE2vAAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE2vAAF","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":720.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__RenewalTerm__c":12,"SBQQ__Quote__c":"a0z6s0000016DwbAAE","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:32:28.000+0000","LastViewedDate":"2023-08-02T21:32:28.000+0000","SystemModstamp":"2023-08-02T21:32:26.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:26.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:32:25.000+0000","TotalAmount":720.00,"OrderNumber":"00001306","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:32:26.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-02-02","OpportunityId":"0067e00000NfERzAAN","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR80AAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE","type":"Order"}},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NfEdqAAF"],"Accounts":["0017e00001iaMUOAA2"],"OrderItems":["8027e000001bQelAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Stripe_ID__c":"sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDKZbAAP","SBQQ__PriceCalcStatus__c":"Not + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T20:06:54.000+0000","LastViewedDate":"2023-11-09T20:06:54.000+0000","SystemModstamp":"2023-11-09T20:06:53.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:52.000+0000","TotalAmount":720.00,"OrderNumber":"00000275","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:06:53.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"Amendment","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2024-05-09","OpportunityId":"0066s00000CfE2vAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyYAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyYAAW","type":"Order"}},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE2qAAF"],"Accounts":["0016s00000fzBqzAAE"],"OrderItems":["8026s0000014MvsAAE"],"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeUlIsgf92XbAO2pPTthj7","Stripe_ID__c":"sub_sched_1OAeUlIsgf92XbAO2pPTthj7","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":1440.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z6s0000016DwWAAU","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:32:07.000+0000","LastViewedDate":"2023-08-02T21:32:07.000+0000","SystemModstamp":"2023-08-02T21:32:07.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:07.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-02T21:31:49.000+0000","TotalAmount":1440.00,"OrderNumber":"00001305","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-02T21:31:51.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-02","OpportunityId":"0067e00000NfEdqAAF","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iaMUOAA2","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nR7vAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":true,"LastReferencedDate":"2023-11-09T20:06:32.000+0000","LastViewedDate":"2023-11-09T20:06:32.000+0000","SystemModstamp":"2023-11-09T20:06:32.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:32.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T20:06:24.000+0000","TotalAmount":1440.00,"OrderNumber":"00000274","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T20:06:25.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE2qAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBqzAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyTAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyTAAW","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 @@ -5747,10 +5923,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: Thu, 09 Nov 2023 20:06:58 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%278017e000000nR7vAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXyTAAW%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -5769,12 +5945,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:33 GMT + - Thu, 09 Nov 2023 20:06:58 GMT Set-Cookie: - - BrowserId=F8hpozF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:33 + - BrowserId=icsWVH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5787,7 +5963,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13656/5000000 + - api-usage=539/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -5796,11 +5972,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE"}]}' - 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/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:58 GMT - request: method: get - uri: https://api.stripe.com/v1/subscriptions/sub_sched_1NameGIsgf92XbAOtZ3vjAEA + uri: https://api.stripe.com/v1/subscriptions/sub_sched_1OAeUlIsgf92XbAO2pPTthj7 body: encoding: US-ASCII string: '' @@ -5812,13 +5988,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_85C0QYgYntfn5l","request_duration_ms":180}}' + - '{"last_request_metrics":{"request_id":"req_pasJLSy19oBdAB","request_duration_ms":233}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5833,7 +6009,7 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:34 GMT + - Thu, 09 Nov 2023 20:06:58 GMT Content-Type: - application/json Content-Length: @@ -5843,21 +6019,29 @@ http_interactions: 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscriptions%2F%3Asubscription_exposed_id; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_UWXKjfEoEAMigp + - req_QDpPC5i7C4aMd9 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5869,16 +6053,16 @@ http_interactions: "error": { "code": "resource_missing", "doc_url": "https://stripe.com/docs/error-codes/resource-missing", - "message": "No such subscription: 'sub_sched_1NameGIsgf92XbAOtZ3vjAEA'", + "message": "No such subscription: 'sub_sched_1OAeUlIsgf92XbAO2pPTthj7'", "param": "id", - "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_UWXKjfEoEAMigp?t=1691011954", + "request_log_url": "https://dashboard.stripe.com/acct_15uapDIsgf92XbAO/test/logs/req_QDpPC5i7C4aMd9?t=1699560418", "type": "invalid_request_error" } } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:58 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7 body: encoding: US-ASCII string: '' @@ -5890,13 +6074,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_85C0QYgYntfn5l","request_duration_ms":180}}' + - '{"last_request_metrics":{"request_id":"req_pasJLSy19oBdAB","request_duration_ms":233}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -5911,31 +6095,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:34 GMT + - Thu, 09 Nov 2023 20:06:59 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_brKe3jzTU3IdVn + - req_66OIji72Z9d2M2 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -5944,17 +6136,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -5973,8 +6165,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -5989,29 +6181,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -6021,13 +6213,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:59 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%278017e000000nR80AAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXyYAAW%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -6046,12 +6238,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:34 GMT + - Thu, 09 Nov 2023 20:06:59 GMT Set-Cookie: - - BrowserId=GFc8czF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:34 + - BrowserId=ihxDnH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6064,7 +6256,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13655/5000000 + - api-usage=540/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6073,11 +6265,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR80AAE"},"Id":"8017e000000nR80AAE"}]}' - 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/8016s000001FXyYAAW"},"Id":"8016s000001FXyYAAW"}]}' + recorded_at: Thu, 09 Nov 2023 20:06:59 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW body: encoding: US-ASCII string: '' @@ -6096,12 +6288,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:35 GMT + - Thu, 09 Nov 2023 20:06:59 GMT Set-Cookie: - - BrowserId=GJsjPDF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:35 + - BrowserId=iigpxX87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6114,9 +6306,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13652/5000000 + - api-usage=540/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:07 GMT + - Thu, 09 Nov 2023 20:06:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6125,13 +6317,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nR7vAAE"},"Id":"8017e000000nR7vAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iaMUOAA2","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NfEdqAAF","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:31:51.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00001305","TotalAmount":1440.0,"CreatedDate":"2023-08-02T21:31:49.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:07.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-02T21:32:07.000+0000","LastViewedDate":"2023-08-02T21:32:07.000+0000","LastReferencedDate":"2023-08-02T21:32:07.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyTAAW"},"Id":"8016s000001FXyTAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBqzAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE2qAAF","EffectiveDate":"2023-11-09","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-11-09T20:06:25.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000274","TotalAmount":1440.0,"CreatedDate":"2023-11-09T20:06:24.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:32.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T20:06:32.000+0000","LastViewedDate":"2023-11-09T20:06:32.000+0000","LastReferencedDate":"2023-11-09T20:06:32.000+0000","SBQQ__Contracted__c":true,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDKZbAAP","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_1NameGIsgf92XbAOtZ3vjAEA","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NameGIsgf92XbAOtZ3vjAEA"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DwWAAU","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_1OAeUlIsgf92XbAO2pPTthj7","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAeUlIsgf92XbAO2pPTthj7"}' + recorded_at: Thu, 09 Nov 2023 20:06:59 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7 body: encoding: US-ASCII string: '' @@ -6143,13 +6335,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_brKe3jzTU3IdVn","request_duration_ms":217}}' + - '{"last_request_metrics":{"request_id":"req_66OIji72Z9d2M2","request_duration_ms":201}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6164,31 +6356,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:35 GMT + - Thu, 09 Nov 2023 20:06:59 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_4IyLni9Bhm3bKY + - req_O6ppRjewgKRWRd Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6197,17 +6397,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -6226,8 +6426,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -6242,29 +6442,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -6274,13 +6474,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:59 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DwWAAU body: encoding: US-ASCII string: '' @@ -6299,12 +6499,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:35 GMT + - Thu, 09 Nov 2023 20:06:59 GMT Set-Cookie: - - BrowserId=GPYUNDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:35 + - BrowserId=ilwyMn87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6317,9 +6517,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13653/5000000 + - api-usage=543/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:31:49 GMT + - Thu, 09 Nov 2023 20:06:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6328,15 +6528,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDKZbAAP"},"Id":"a0z7e00000BDKZbAAP","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-01222","CreatedDate":"2023-08-02T21:31:41.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:31:49.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:31:49.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-02T21:31:49.000+0000","LastReferencedDate":"2023-08-02T21:31:49.000+0000","SBQQ__Account__c":"0017e00001iaMUOAA2","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:31:49.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":"0067e00000NfEdqAAF","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":"0037e00001jI84JAAS","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/a0z6s0000016DwWAAU"},"Id":"a0z6s0000016DwWAAU","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00203","CreatedDate":"2023-11-09T20:06:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:23.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T20:06:23.000+0000","LastReferencedDate":"2023-11-09T20:06:23.000+0000","SBQQ__Account__c":"0016s00000fzBqzAAE","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T20:06:23.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":"0066s00000CfE2qAAF","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":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY9BaAAL","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 20:06:59 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONXj2SLLbrOhMy + uri: https://api.stripe.com/v1/products/prod_OybiA5XG5yrvmh body: encoding: US-ASCII string: '' @@ -6348,13 +6548,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4IyLni9Bhm3bKY","request_duration_ms":179}}' + - '{"last_request_metrics":{"request_id":"req_O6ppRjewgKRWRd","request_duration_ms":208}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6369,31 +6569,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:36 GMT + - Thu, 09 Nov 2023 20:06:59 GMT Content-Type: - application/json Content-Length: - - '748' + - '761' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_jJIBWbY2lflf44 + - req_PPpyQYrlYRiFnI Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6402,36 +6609,37 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXj2SLLbrOhMy", + "id": "prod_OybiA5XG5yrvmh", "object": "product", "active": true, "attributes": [], - "created": 1691011917, + "created": 1699560388, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7gAAC", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7gAAC" + "salesforce_product2_id": "01t6s000004g3qoAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qoAAA" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-71", + "sku": "rest-product2--2023-11-09-000000-utc-10", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691011917, + "updated": 1699560388, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:06:59 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -6450,12 +6658,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:36 GMT + - Thu, 09 Nov 2023 20:06:59 GMT Set-Cookie: - - BrowserId=GVSvXjF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:36 + - BrowserId=ioqV-387Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:06:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6468,7 +6676,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13653/5000000 + - api-usage=545/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6478,10 +6686,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: Thu, 09 Nov 2023 20:06:59 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -6500,12 +6708,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:37 GMT + - Thu, 09 Nov 2023 20:07:00 GMT Set-Cookie: - - BrowserId=GZaaZzF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:37 + - BrowserId=ipeNb387Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6518,7 +6726,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13657/5000000 + - api-usage=541/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6528,10 +6736,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: Thu, 09 Nov 2023 20:07:00 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%278027e000001bQelAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvsAAE%27%0A body: encoding: US-ASCII string: '' @@ -6550,12 +6758,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:37 GMT + - Thu, 09 Nov 2023 20:07:00 GMT Set-Cookie: - - BrowserId=GdsdjjF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:37 + - BrowserId=iqY0Fn87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6568,7 +6776,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13654/5000000 + - api-usage=541/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6578,10 +6786,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: Thu, 09 Nov 2023 20:07:00 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%278027e000001bQelAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvsAAE%27%0A body: encoding: US-ASCII string: '' @@ -6600,12 +6808,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:37 GMT + - Thu, 09 Nov 2023 20:07:00 GMT Set-Cookie: - - BrowserId=Gh9SiTF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:37 + - BrowserId=irLdk387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6618,7 +6826,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13655/5000000 + - api-usage=543/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6628,10 +6836,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: Thu, 09 Nov 2023 20:07:00 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NameEIsgf92XbAORdsSCVw2?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1OAeUjIsgf92XbAOndJycPiW?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -6643,13 +6851,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_jJIBWbY2lflf44","request_duration_ms":212}}' + - '{"last_request_metrics":{"request_id":"req_PPpyQYrlYRiFnI","request_duration_ms":194}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6664,31 +6872,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:38 GMT + - Thu, 09 Nov 2023 20:07:00 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_ETYm6lqDUewmaB + - req_REXTheM3wvRBLC Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6697,21 +6912,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6726,10 +6941,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:00 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -6748,12 +6963,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:38 GMT + - Thu, 09 Nov 2023 20:07:00 GMT Set-Cookie: - - BrowserId=GofYdjF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:38 + - BrowserId=iuGPEn87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6766,7 +6981,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13656/5000000 + - api-usage=542/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6776,10 +6991,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: Thu, 09 Nov 2023 20:07:00 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bQelAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvsAAE%27 body: encoding: US-ASCII string: '' @@ -6798,12 +7013,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:39 GMT + - Thu, 09 Nov 2023 20:07:00 GMT Set-Cookie: - - BrowserId=GvR9PjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:39 + - BrowserId=ivA1fH87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6816,7 +7031,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13642/5000000 + - api-usage=549/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6826,10 +7041,60 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:00 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NameEIsgf92XbAORdsSCVw2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tleJAAQ%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:07:00 GMT + Set-Cookie: + - BrowserId=iv3JTn87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07: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=536/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: Thu, 09 Nov 2023 20:07:00 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAeUjIsgf92XbAOndJycPiW body: encoding: US-ASCII string: '' @@ -6841,13 +7106,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ETYm6lqDUewmaB","request_duration_ms":234}}' + - '{"last_request_metrics":{"request_id":"req_REXTheM3wvRBLC","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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6862,31 +7127,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:39 GMT + - Thu, 09 Nov 2023 20:07:00 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_Bq6EHWKiKvgS3j + - req_foFmAeEJYk4kcS Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6895,21 +7167,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -6924,10 +7196,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:00 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ONXj2SLLbrOhMy + uri: https://api.stripe.com/v1/products/prod_OybiA5XG5yrvmh body: encoding: US-ASCII string: '' @@ -6939,13 +7211,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Bq6EHWKiKvgS3j","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_foFmAeEJYk4kcS","request_duration_ms":215}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6960,31 +7232,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:39 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Content-Type: - application/json Content-Length: - - '748' + - '761' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_5guKFLAhTfe8xV + - req_JfRvhUeyH8Y058 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6993,36 +7272,37 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ONXj2SLLbrOhMy", + "id": "prod_OybiA5XG5yrvmh", "object": "product", "active": true, "attributes": [], - "created": 1691011917, + "created": 1699560388, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009As7gAAC", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009As7gAAC" + "salesforce_product2_id": "01t6s000004g3qoAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qoAAA" }, - "name": "REST Product2 2023-08-02 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-02-000000-utc-71", + "sku": "rest-product2--2023-11-09-000000-utc-10", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1691011917, + "updated": 1699560388, "url": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:01 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -7041,12 +7321,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:40 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Set-Cookie: - - BrowserId=G4VLfjF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:40 + - BrowserId=i04zbH87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7059,7 +7339,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13658/5000000 + - api-usage=544/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7069,10 +7349,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: Thu, 09 Nov 2023 20:07:01 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%278027e000001bQeqAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvxAAE%27%0A body: encoding: US-ASCII string: '' @@ -7091,12 +7371,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:40 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Set-Cookie: - - BrowserId=G8ZLOTF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:40 + - BrowserId=i1vu1X87Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7109,7 +7389,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13657/5000000 + - api-usage=546/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7119,10 +7399,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: Thu, 09 Nov 2023 20:07:01 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NameEIsgf92XbAORdsSCVw2?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1OAeUjIsgf92XbAOndJycPiW?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -7134,13 +7414,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_5guKFLAhTfe8xV","request_duration_ms":255}}' + - '{"last_request_metrics":{"request_id":"req_JfRvhUeyH8Y058","request_duration_ms":203}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7155,31 +7435,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:40 GMT + - Thu, 09 Nov 2023 20:07:01 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_S2QTxs18MPOSrV + - req_TdYshQ8T5ld3ZP Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7188,21 +7475,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7217,10 +7504,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:01 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%2701t7e000009As7gAAC%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qoAAA%27%0A body: encoding: US-ASCII string: '' @@ -7239,12 +7526,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:41 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Set-Cookie: - - BrowserId=HCdXFTF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:41 + - BrowserId=i4sVQn87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7257,7 +7544,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13658/5000000 + - api-usage=542/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7267,10 +7554,60 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:01 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvxAAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:07:01 GMT + Set-Cookie: + - BrowserId=i5oJS387Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07: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=547/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ"},"Id":"a1N6s00000113iQEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:01 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bQeqAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlePAAQ%27 body: encoding: US-ASCII string: '' @@ -7289,12 +7626,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:41 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Set-Cookie: - - BrowserId=HGgKTjF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:41 + - BrowserId=i6oPqH87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7307,7 +7644,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13654/5000000 + - api-usage=550/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7316,11 +7653,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ"},"Id":"a1N7e000002fm3DEAQ"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk7dEAC"},"Id":"a1P6s000001Bk7dEAC"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:01 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ body: encoding: US-ASCII string: '' @@ -7339,12 +7676,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:42 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Set-Cookie: - - BrowserId=HKnNkDF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:42 + - BrowserId=i7gY1H87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7357,9 +7694,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13659/5000000 + - api-usage=545/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:27 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7368,12 +7705,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ"},"Id":"a1N7e000002fm3DEAQ","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0148","CreatedDate":"2023-08-02T21:32:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:27.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"26.7% - off coupon","Order_Item__c":"8027e000001bQeqAAE","Order__c":null,"Percent_Off__c":26.7,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFv6EAG","Stripe_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_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ"},"Id":"a1N6s00000113iQEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0018","CreatedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:53.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"26.7% + off coupon","Order_Item__c":"8026s0000014MvxAAE","Order__c":null,"Percent_Off__c":26.7,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvIwEAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:07:01 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv6EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIwEAI body: encoding: US-ASCII string: '' @@ -7392,12 +7729,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:42 GMT + - Thu, 09 Nov 2023 20:07:01 GMT Set-Cookie: - - BrowserId=HO4DTzF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:42 + - BrowserId=i8ZxWH87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7410,9 +7747,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13655/5000000 + - api-usage=541/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:17 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7421,15 +7758,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv6EAG"},"Id":"a1R7e000007JFv6EAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0127","CreatedDate":"2023-08-02T21:32:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:17.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"26.7% + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIwEAI"},"Id":"a1R6s000000uvIwEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0015","CreatedDate":"2023-11-09T20:06:47.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:47.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"26.7% off coupon","Percent_Off__c":26.7,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:02 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=26.7%25+off+coupon&percent_off=26.7&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002fm3DEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002fm3DEAQ + string: name=26.7%25+off+coupon&percent_off=26.7&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iQEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iQEAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7438,15 +7775,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_S2QTxs18MPOSrV","request_duration_ms":233}}' + - '{"last_request_metrics":{"request_id":"req_Xl6nxOD4oWjajQ","request_duration_ms":582}}' Idempotency-Key: - - 590bf0b3-0f17-403b-a650-84aa7933fe5e + - 904525bf-d6f5-4157-bb5b-8d881c9e562a 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7461,37 +7798,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:42 GMT + - Thu, 09 Nov 2023 20:07:02 GMT Content-Type: - application/json Content-Length: - - '538' + - '533' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 590bf0b3-0f17-403b-a650-84aa7933fe5e + - 904525bf-d6f5-4157-bb5b-8d881c9e562a Original-Request: - - req_RJHz6Wku0zyqws + - req_r9KUEduVLhDalV Request-Id: - - req_RJHz6Wku0zyqws + - req_r9KUEduVLhDalV 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: @@ -7500,18 +7844,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "1TbGDmr7", + "id": "iRdh77ch", "object": "coupon", "amount_off": null, - "created": 1691011962, + "created": 1699560422, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm3DEAQ", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm3DEAQ" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iQEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iQEAQ" }, "name": "26.7% off coupon", "percent_off": 26.7, @@ -7519,13 +7863,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:02 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"1TbGDmr7"}' + string: '{"Stripe_ID__c":"iRdh77ch"}' headers: User-Agent: - Faraday v2.4.0 @@ -7543,12 +7887,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:43 GMT + - Thu, 09 Nov 2023 20:07:02 GMT Set-Cookie: - - BrowserId=HVhdYzF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:43 + - BrowserId=jAPIYn87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7563,14 +7907,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13656/5000000 + - api-usage=542/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:02 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -7589,12 +7933,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:43 GMT + - Thu, 09 Nov 2023 20:07:02 GMT Set-Cookie: - - BrowserId=HZ18VDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:43 + - BrowserId=jBVUpX87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7607,11 +7951,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13656/5000000 + - api-usage=551/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7728,7 +8072,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -7739,14 +8083,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -7914,7 +8256,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 @@ -7930,7 +8273,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -7948,9 +8293,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -8094,9 +8438,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -8218,9 +8562,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 @@ -8272,7 +8625,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 @@ -8707,7 +9060,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -8887,7 +9245,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -8912,7 +9270,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -8968,13 +9337,13 @@ 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: Thu, 09 Nov 2023 20:07:02 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFv6EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIwEAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"1TbGDmr7"}' + string: '{"Stripe_ID__c":"iRdh77ch"}' headers: User-Agent: - Faraday v2.4.0 @@ -8992,12 +9361,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:45 GMT + - Thu, 09 Nov 2023 20:07:02 GMT Set-Cookie: - - BrowserId=Hm6vcDF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:45 + - BrowserId=jFn-GH87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9012,14 +9381,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13660/5000000 + - api-usage=543/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:03 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -9038,12 +9407,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:45 GMT + - Thu, 09 Nov 2023 20:07:03 GMT Set-Cookie: - - BrowserId=Hqr1NTF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:45 + - BrowserId=jHVO6387Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9056,11 +9425,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13661/5000000 + - api-usage=543/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -9177,7 +9546,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -9188,14 +9557,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -9363,7 +9730,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 @@ -9379,7 +9747,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -9397,9 +9767,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -9543,9 +9912,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -9667,9 +10036,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 @@ -9721,7 +10099,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 @@ -10156,7 +10534,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -10336,7 +10719,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -10361,7 +10744,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -10417,10 +10811,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: Thu, 09 Nov 2023 20:07:03 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NameEIsgf92XbAORdsSCVw2?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1OAeUjIsgf92XbAOndJycPiW?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -10432,13 +10826,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_RJHz6Wku0zyqws","request_duration_ms":215}}' + - '{"last_request_metrics":{"request_id":"req_TdYshQ8T5ld3ZP","request_duration_ms":200}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10453,31 +10847,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:46 GMT + - Thu, 09 Nov 2023 20:07:03 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_RiCyP4tweFnwt8 + - req_TJ072S5PKzTB5M Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10486,21 +10887,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10515,13 +10916,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:03 GMT - request: method: post uri: https://api.stripe.com/v1/prices body: encoding: UTF-8 - string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_pricebook_entry_id]=01u7e00000IsjgEAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000IsjgEAAR&metadata[salesforce_duplicate]=true&metadata[salesforce_auto_archive]=true&metadata[salesforce_original_stripe_price_id]=price_1NameEIsgf92XbAORdsSCVw2&product=prod_ONXj2SLLbrOhMy&recurring[interval]=month&recurring[interval_count]=1&recurring[usage_type]=licensed&tax_behavior=unspecified&unit_amount_decimal=12000 + string: billing_scheme=per_unit¤cy=usd&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRaAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRaAAK&metadata[salesforce_duplicate]=true&metadata[salesforce_auto_archive]=true&metadata[salesforce_original_stripe_price_id]=price_1OAeUjIsgf92XbAOndJycPiW&product=prod_OybiA5XG5yrvmh&recurring[interval]=month&recurring[interval_count]=1&recurring[usage_type]=licensed&tax_behavior=unspecified&unit_amount_decimal=12000 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -10530,15 +10931,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_RiCyP4tweFnwt8","request_duration_ms":221}}' + - '{"last_request_metrics":{"request_id":"req_TJ072S5PKzTB5M","request_duration_ms":210}}' Idempotency-Key: - - ae5c39cc-f27a-4b91-b2a8-ab8f0bfbce11 + - 5f00ae12-b110-4283-a7a6-d328272dd6c9 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10553,37 +10954,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:46 GMT + - Thu, 09 Nov 2023 20:07:04 GMT Content-Type: - application/json Content-Length: - - '974' + - '969' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ae5c39cc-f27a-4b91-b2a8-ab8f0bfbce11 + - 5f00ae12-b110-4283-a7a6-d328272dd6c9 Original-Request: - - req_LJFGNdcyNRTRg8 + - req_QPgUFifMO7o9Rp Request-Id: - - req_LJFGNdcyNRTRg8 + - req_QPgUFifMO7o9Rp 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: @@ -10592,11 +11000,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamewIsgf92XbAOjyRWHBwa", + "id": "price_1OAeVIIsgf92XbAO99E4LqFf", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011966, + "created": 1699560424, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -10604,12 +11012,12 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_original_stripe_price_id": "price_1NameEIsgf92XbAORdsSCVw2", - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_original_stripe_price_id": "price_1OAeUjIsgf92XbAOndJycPiW", + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10624,10 +11032,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:04 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NameEIsgf92XbAORdsSCVw2 + uri: https://api.stripe.com/v1/prices/price_1OAeUjIsgf92XbAOndJycPiW body: encoding: US-ASCII string: '' @@ -10639,13 +11047,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_LJFGNdcyNRTRg8","request_duration_ms":330}}' + - '{"last_request_metrics":{"request_id":"req_QPgUFifMO7o9Rp","request_duration_ms":271}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10660,31 +11068,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:46 GMT + - Thu, 09 Nov 2023 20:07:04 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_WZBSVI2dQq0bW5 + - req_tSp0oAj7oqUwi4 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10693,21 +11108,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10722,10 +11137,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:04 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXjffuNL3yAsF?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OybiNZbftqIZ1W?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -10737,13 +11152,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_WZBSVI2dQq0bW5","request_duration_ms":181}}' + - '{"last_request_metrics":{"request_id":"req_tSp0oAj7oqUwi4","request_duration_ms":201}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10758,31 +11173,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:47 GMT + - Thu, 09 Nov 2023 20:07:04 GMT Content-Type: - application/json Content-Length: - - '850' + - '845' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_bmF9OwLvdG1LIG + - req_SyXk5nlqNFPXMq Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10791,11 +11214,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXjffuNL3yAsF", + "id": "cus_OybiNZbftqIZ1W", "object": "customer", "address": null, "balance": 0, - "created": 1691011916, + "created": 1699560387, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -10803,7 +11226,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "90540B2E", + "invoice_prefix": "2FDC5DE5", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -10812,10 +11235,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMUOAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMUOAA2" + "salesforce_account_id": "0016s00000fzBqzAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBqzAAE" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -10823,10 +11246,10 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:04 GMT - request: method: get - uri: https://api.stripe.com/v1/invoices/upcoming?subscription=sub_1NameGIsgf92XbAO29VMrgyo + uri: https://api.stripe.com/v1/invoices/upcoming?subscription=sub_1OAeUlIsgf92XbAOGHqU1iG2 body: encoding: US-ASCII string: '' @@ -10838,13 +11261,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_bmF9OwLvdG1LIG","request_duration_ms":196}}' + - '{"last_request_metrics":{"request_id":"req_SyXk5nlqNFPXMq","request_duration_ms":215}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10859,31 +11282,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:47 GMT + - Thu, 09 Nov 2023 20:07:04 GMT Content-Type: - application/json Content-Length: - - '5515' + - '5720' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Finvoices%2Fupcoming; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_89uFdEuiIFtJdm + - req_oa9tpUMKLEVtx3 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10891,11 +11321,11 @@ http_interactions: body: encoding: ASCII-8BIT string: !binary |- - ewogICJvYmplY3QiOiAiaW52b2ljZSIsCiAgImFjY291bnRfY291bnRyeSI6ICJVUyIsCiAgImFjY291bnRfbmFtZSI6ICJTdHJpcGVGb3JjZSBEZW1vIEFjY291bnQgIiwKICAiYWNjb3VudF90YXhfaWRzIjogbnVsbCwKICAiYW1vdW50X2R1ZSI6IDEyMDAwLAogICJhbW91bnRfcGFpZCI6IDAsCiAgImFtb3VudF9yZW1haW5pbmciOiAxMjAwMCwKICAiYW1vdW50X3NoaXBwaW5nIjogMCwKICAiYXBwbGljYXRpb24iOiAiY2FfS0hvTEpHcml0a1F5OUJpc2MxRDVPNVlnbHFmV3M1YmkiLAogICJhcHBsaWNhdGlvbl9mZWVfYW1vdW50IjogbnVsbCwKICAiYXR0ZW1wdF9jb3VudCI6IDAsCiAgImF0dGVtcHRlZCI6IGZhbHNlLAogICJhdXRvbWF0aWNfdGF4IjogewogICAgImVuYWJsZWQiOiBmYWxzZSwKICAgICJzdGF0dXMiOiBudWxsCiAgfSwKICAiYmlsbGluZ19yZWFzb24iOiAidXBjb21pbmciLAogICJjaGFyZ2UiOiBudWxsLAogICJjb2xsZWN0aW9uX21ldGhvZCI6ICJjaGFyZ2VfYXV0b21hdGljYWxseSIsCiAgImNyZWF0ZWQiOiAxNjkzNjEyODAwLAogICJjdXJyZW5jeSI6ICJ1c2QiLAogICJjdXN0b21fZmllbGRzIjogbnVsbCwKICAiY3VzdG9tZXIiOiAiY3VzX09OWGpmZnVOTDN5QXNGIiwKICAiY3VzdG9tZXJfYWRkcmVzcyI6IG51bGwsCiAgImN1c3RvbWVyX2VtYWlsIjogbnVsbCwKICAiY3VzdG9tZXJfbmFtZSI6ICJSRVNUIEFjY291bnQgIDIwMjMtMDgtMDIgMDA6MDA6MDAgVVRDIiwKICAiY3VzdG9tZXJfcGhvbmUiOiBudWxsLAogICJjdXN0b21lcl9zaGlwcGluZyI6IG51bGwsCiAgImN1c3RvbWVyX3RheF9leGVtcHQiOiAibm9uZSIsCiAgImN1c3RvbWVyX3RheF9pZHMiOiBbXSwKICAiZGVmYXVsdF9wYXltZW50X21ldGhvZCI6IG51bGwsCiAgImRlZmF1bHRfc291cmNlIjogbnVsbCwKICAiZGVmYXVsdF90YXhfcmF0ZXMiOiBbXSwKICAiZGVzY3JpcHRpb24iOiBudWxsLAogICJkaXNjb3VudCI6IG51bGwsCiAgImRpc2NvdW50cyI6IFtdLAogICJkdWVfZGF0ZSI6IG51bGwsCiAgImVmZmVjdGl2ZV9hdCI6IG51bGwsCiAgImVuZGluZ19iYWxhbmNlIjogMCwKICAiZm9vdGVyIjogbnVsbCwKICAiZnJvbV9pbnZvaWNlIjogbnVsbCwKICAibGFzdF9maW5hbGl6YXRpb25fZXJyb3IiOiBudWxsLAogICJsYXRlc3RfcmV2aXNpb24iOiBudWxsLAogICJsaW5lcyI6IHsKICAgICJvYmplY3QiOiAibGlzdCIsCiAgICAiZGF0YSI6IFsKICAgICAgewogICAgICAgICJpZCI6ICJpbF90bXBfMTdjMTc4SXNnZjkyWGJBT2E1OGEwNzg4IiwKICAgICAgICAib2JqZWN0IjogImxpbmVfaXRlbSIsCiAgICAgICAgImFtb3VudCI6IDEyMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDEyMDAwLAogICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICIxIMOXIFJFU1QgUHJvZHVjdDIgIDIwMjMtMDgtMDIgMDA6MDA6MDAgVVRDIChhdCAkMTIwLjAwIC8gbW9udGgpIiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE3ZTAwMDAwMG5SN3ZBQUUiLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL2FiaWxpdHktaW5ub3ZhdGlvbi03MzM1LWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzgwMTdlMDAwMDAwblI3dkFBRSIKICAgICAgICB9LAogICAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgICAiZW5kIjogMTY5NjIwNDgwMCwKICAgICAgICAgICJzdGFydCI6IDE2OTM2MTI4MDAKICAgICAgICB9LAogICAgICAgICJwbGFuIjogewogICAgICAgICAgImlkIjogInByaWNlXzFOYW1lRUlzZ2Y5MlhiQU9SZHNTQ1Z3MiIsCiAgICAgICAgICAib2JqZWN0IjogInBsYW4iLAogICAgICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJhbW91bnQiOiAxMjAwMCwKICAgICAgICAgICJhbW91bnRfZGVjaW1hbCI6ICIxMjAwMCIsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjkxMDExOTIyLAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiaW50ZXJ2YWwiOiAibW9udGgiLAogICAgICAgICAgImludGVydmFsX2NvdW50IjogMSwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9wcmljZWJvb2tfZW50cnlfaWQiOiAiMDF1N2UwMDAwMElzamdFQUFSIiwKICAgICAgICAgICAgInNhbGVzZm9yY2VfcHJpY2Vib29rX2VudHJ5X2xpbmsiOiAiaHR0cHM6Ly9hYmlsaXR5LWlubm92YXRpb24tNzMzNS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS8wMXU3ZTAwMDAwSXNqZ0VBQVIiCiAgICAgICAgICB9LAogICAgICAgICAgIm5pY2tuYW1lIjogbnVsbCwKICAgICAgICAgICJwcm9kdWN0IjogInByb2RfT05YajJTTExick9oTXkiLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV91c2FnZSI6IG51bGwsCiAgICAgICAgICAidHJpYWxfcGVyaW9kX2RheXMiOiBudWxsLAogICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgfSwKICAgICAgICAicHJpY2UiOiB7CiAgICAgICAgICAiaWQiOiAicHJpY2VfMU5hbWVFSXNnZjkyWGJBT1Jkc1NDVncyIiwKICAgICAgICAgICJvYmplY3QiOiAicHJpY2UiLAogICAgICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjkxMDExOTIyLAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAiY3VzdG9tX3VuaXRfYW1vdW50IjogbnVsbCwKICAgICAgICAgICJsaXZlbW9kZSI6IGZhbHNlLAogICAgICAgICAgImxvb2t1cF9rZXkiOiBudWxsLAogICAgICAgICAgIm1ldGFkYXRhIjogewogICAgICAgICAgICAic2FsZXNmb3JjZV9wcmljZWJvb2tfZW50cnlfaWQiOiAiMDF1N2UwMDAwMElzamdFQUFSIiwKICAgICAgICAgICAgInNhbGVzZm9yY2VfcHJpY2Vib29rX2VudHJ5X2xpbmsiOiAiaHR0cHM6Ly9hYmlsaXR5LWlubm92YXRpb24tNzMzNS1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS8wMXU3ZTAwMDAwSXNqZ0VBQVIiCiAgICAgICAgICB9LAogICAgICAgICAgIm5pY2tuYW1lIjogbnVsbCwKICAgICAgICAgICJwcm9kdWN0IjogInByb2RfT05YajJTTExick9oTXkiLAogICAgICAgICAgInJlY3VycmluZyI6IHsKICAgICAgICAgICAgImFnZ3JlZ2F0ZV91c2FnZSI6IG51bGwsCiAgICAgICAgICAgICJpbnRlcnZhbCI6ICJtb250aCIsCiAgICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAgICJ1c2FnZV90eXBlIjogImxpY2Vuc2VkIgogICAgICAgICAgfSwKICAgICAgICAgICJ0YXhfYmVoYXZpb3IiOiAidW5zcGVjaWZpZWQiLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV9xdWFudGl0eSI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJyZWN1cnJpbmciLAogICAgICAgICAgInVuaXRfYW1vdW50IjogMTIwMDAsCiAgICAgICAgICAidW5pdF9hbW91bnRfZGVjaW1hbCI6ICIxMjAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFOYW1lR0lzZ2Y5MlhiQU8yOVZNcmd5byIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX09OWGpKNDRId0w4VnU2IiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIxMjAwMCIKICAgICAgfQogICAgXSwKICAgICJoYXNfbW9yZSI6IGZhbHNlLAogICAgInRvdGFsX2NvdW50IjogMSwKICAgICJ1cmwiOiAiL3YxL2ludm9pY2VzL3VwY29taW5nL2xpbmVzP3N1YnNjcmlwdGlvbj1zdWJfMU5hbWVHSXNnZjkyWGJBTzI5Vk1yZ3lvIgogIH0sCiAgImxpdmVtb2RlIjogZmFsc2UsCiAgIm1ldGFkYXRhIjoge30sCiAgIm5leHRfcGF5bWVudF9hdHRlbXB0IjogMTY5MzYxNjQwMCwKICAibnVtYmVyIjogbnVsbCwKICAib25fYmVoYWxmX29mIjogbnVsbCwKICAicGFpZCI6IGZhbHNlLAogICJwYWlkX291dF9vZl9iYW5kIjogZmFsc2UsCiAgInBheW1lbnRfaW50ZW50IjogbnVsbCwKICAicGF5bWVudF9zZXR0aW5ncyI6IHsKICAgICJkZWZhdWx0X21hbmRhdGUiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX29wdGlvbnMiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX3R5cGVzIjogbnVsbAogIH0sCiAgInBlcmlvZF9lbmQiOiAxNjkzNjEyODAwLAogICJwZXJpb2Rfc3RhcnQiOiAxNjkxMDExOTI0LAogICJwb3N0X3BheW1lbnRfY3JlZGl0X25vdGVzX2Ftb3VudCI6IDAsCiAgInByZV9wYXltZW50X2NyZWRpdF9ub3Rlc19hbW91bnQiOiAwLAogICJxdW90ZSI6IG51bGwsCiAgInJlY2VpcHRfbnVtYmVyIjogbnVsbCwKICAicmVuZGVyaW5nIjogbnVsbCwKICAicmVuZGVyaW5nX29wdGlvbnMiOiBudWxsLAogICJzaGlwcGluZ19jb3N0IjogbnVsbCwKICAic2hpcHBpbmdfZGV0YWlscyI6IG51bGwsCiAgInN0YXJ0aW5nX2JhbGFuY2UiOiAwLAogICJzdGF0ZW1lbnRfZGVzY3JpcHRvciI6IG51bGwsCiAgInN0YXR1cyI6ICJkcmFmdCIsCiAgInN0YXR1c190cmFuc2l0aW9ucyI6IHsKICAgICJmaW5hbGl6ZWRfYXQiOiBudWxsLAogICAgIm1hcmtlZF91bmNvbGxlY3RpYmxlX2F0IjogbnVsbCwKICAgICJwYWlkX2F0IjogbnVsbCwKICAgICJ2b2lkZWRfYXQiOiBudWxsCiAgfSwKICAic3Vic2NyaXB0aW9uIjogInN1Yl8xTmFtZUdJc2dmOTJYYkFPMjlWTXJneW8iLAogICJzdWJ0b3RhbCI6IDEyMDAwLAogICJzdWJ0b3RhbF9leGNsdWRpbmdfdGF4IjogMTIwMDAsCiAgInRheCI6IG51bGwsCiAgInRlc3RfY2xvY2siOiBudWxsLAogICJ0b3RhbCI6IDEyMDAwLAogICJ0b3RhbF9kaXNjb3VudF9hbW91bnRzIjogW10sCiAgInRvdGFsX2V4Y2x1ZGluZ190YXgiOiAxMjAwMCwKICAidG90YWxfdGF4X2Ftb3VudHMiOiBbXSwKICAidHJhbnNmZXJfZGF0YSI6IG51bGwsCiAgIndlYmhvb2tzX2RlbGl2ZXJlZF9hdCI6IG51bGwKfQ== - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + ewogICJvYmplY3QiOiAiaW52b2ljZSIsCiAgImFjY291bnRfY291bnRyeSI6ICJVUyIsCiAgImFjY291bnRfbmFtZSI6ICJTdHJpcGVGb3JjZSBEZW1vIEFjY291bnQgIiwKICAiYWNjb3VudF90YXhfaWRzIjogbnVsbCwKICAiYW1vdW50X2R1ZSI6IDEyMDAwLAogICJhbW91bnRfcGFpZCI6IDAsCiAgImFtb3VudF9yZW1haW5pbmciOiAxMjAwMCwKICAiYW1vdW50X3NoaXBwaW5nIjogMCwKICAiYXBwbGljYXRpb24iOiAiY2FfS0hvTEpHcml0a1F5OUJpc2MxRDVPNVlnbHFmV3M1YmkiLAogICJhcHBsaWNhdGlvbl9mZWVfYW1vdW50IjogbnVsbCwKICAiYXR0ZW1wdF9jb3VudCI6IDAsCiAgImF0dGVtcHRlZCI6IGZhbHNlLAogICJhdXRvbWF0aWNfdGF4IjogewogICAgImVuYWJsZWQiOiBmYWxzZSwKICAgICJzdGF0dXMiOiBudWxsCiAgfSwKICAiYmlsbGluZ19yZWFzb24iOiAidXBjb21pbmciLAogICJjaGFyZ2UiOiBudWxsLAogICJjb2xsZWN0aW9uX21ldGhvZCI6ICJjaGFyZ2VfYXV0b21hdGljYWxseSIsCiAgImNyZWF0ZWQiOiAxNzAyMDgwMDAwLAogICJjdXJyZW5jeSI6ICJ1c2QiLAogICJjdXN0b21fZmllbGRzIjogbnVsbCwKICAiY3VzdG9tZXIiOiAiY3VzX095YmlOWmJmdHFJWjFXIiwKICAiY3VzdG9tZXJfYWRkcmVzcyI6IG51bGwsCiAgImN1c3RvbWVyX2VtYWlsIjogbnVsbCwKICAiY3VzdG9tZXJfbmFtZSI6ICJSRVNUIEFjY291bnQgIDIwMjMtMTEtMDkgMDA6MDA6MDAgVVRDIiwKICAiY3VzdG9tZXJfcGhvbmUiOiBudWxsLAogICJjdXN0b21lcl9zaGlwcGluZyI6IG51bGwsCiAgImN1c3RvbWVyX3RheF9leGVtcHQiOiAibm9uZSIsCiAgImN1c3RvbWVyX3RheF9pZHMiOiBbXSwKICAiZGVmYXVsdF9wYXltZW50X21ldGhvZCI6IG51bGwsCiAgImRlZmF1bHRfc291cmNlIjogbnVsbCwKICAiZGVmYXVsdF90YXhfcmF0ZXMiOiBbXSwKICAiZGVzY3JpcHRpb24iOiBudWxsLAogICJkaXNjb3VudCI6IG51bGwsCiAgImRpc2NvdW50cyI6IFtdLAogICJkdWVfZGF0ZSI6IG51bGwsCiAgImVmZmVjdGl2ZV9hdCI6IG51bGwsCiAgImVuZGluZ19iYWxhbmNlIjogMCwKICAiZm9vdGVyIjogbnVsbCwKICAiZnJvbV9pbnZvaWNlIjogbnVsbCwKICAibGFzdF9maW5hbGl6YXRpb25fZXJyb3IiOiBudWxsLAogICJsYXRlc3RfcmV2aXNpb24iOiBudWxsLAogICJsaW5lcyI6IHsKICAgICJvYmplY3QiOiAibGlzdCIsCiAgICAiZGF0YSI6IFsKICAgICAgewogICAgICAgICJpZCI6ICJpbF90bXBfMTRhODQxSXNnZjkyWGJBT2VhZjUxYzI0IiwKICAgICAgICAib2JqZWN0IjogImxpbmVfaXRlbSIsCiAgICAgICAgImFtb3VudCI6IDEyMDAwLAogICAgICAgICJhbW91bnRfZXhjbHVkaW5nX3RheCI6IDEyMDAwLAogICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICJkZXNjcmlwdGlvbiI6ICIxIMOXIFJFU1QgUHJvZHVjdDIgIDIwMjMtMTEtMDkgMDA6MDA6MDAgVVRDIChhdCAkMTIwLjAwIC8gbW9udGgpIiwKICAgICAgICAiZGlzY291bnRfYW1vdW50cyI6IFtdLAogICAgICAgICJkaXNjb3VudGFibGUiOiB0cnVlLAogICAgICAgICJkaXNjb3VudHMiOiBbXSwKICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAic2FsZXNmb3JjZV9vcmRlcl9pZCI6ICI4MDE2czAwMDAwMUZYeVRBQVciLAogICAgICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL2Nvbm5lY3Qtc2Fhcy04OTgyMi1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE2czAwMDAwMUZYeVRBQVciCiAgICAgICAgfSwKICAgICAgICAicGVyaW9kIjogewogICAgICAgICAgImVuZCI6IDE3MDQ3NTg0MDAsCiAgICAgICAgICAic3RhcnQiOiAxNzAyMDgwMDAwCiAgICAgICAgfSwKICAgICAgICAicGxhbiI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xT0FlVWpJc2dmOTJYYkFPbmRKeWNQaVciLAogICAgICAgICAgIm9iamVjdCI6ICJwbGFuIiwKICAgICAgICAgICJhY3RpdmUiOiB0cnVlLAogICAgICAgICAgImFnZ3JlZ2F0ZV91c2FnZSI6IG51bGwsCiAgICAgICAgICAiYW1vdW50IjogMTIwMDAsCiAgICAgICAgICAiYW1vdW50X2RlY2ltYWwiOiAiMTIwMDAiLAogICAgICAgICAgImJpbGxpbmdfc2NoZW1lIjogInBlcl91bml0IiwKICAgICAgICAgICJjcmVhdGVkIjogMTY5OTU2MDM4OSwKICAgICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgICAgInNhbGVzZm9yY2VfcHJpY2Vib29rX2VudHJ5X2lkIjogIjAxdTZzMDAwMDA2TXlSYUFBSyIsCiAgICAgICAgICAgICJzYWxlc2ZvcmNlX3ByaWNlYm9va19lbnRyeV9saW5rIjogImh0dHBzOi8vY29ubmVjdC1zYWFzLTg5ODIyLWRldi1lZC5zY3JhdGNoLm15LnNhbGVzZm9yY2UuY29tLzAxdTZzMDAwMDA2TXlSYUFBSyIKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9PeWJpQTVYRzV5cnZtaCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAidXNhZ2VfdHlwZSI6ICJsaWNlbnNlZCIKICAgICAgICB9LAogICAgICAgICJwcmljZSI6IHsKICAgICAgICAgICJpZCI6ICJwcmljZV8xT0FlVWpJc2dmOTJYYkFPbmRKeWNQaVciLAogICAgICAgICAgIm9iamVjdCI6ICJwcmljZSIsCiAgICAgICAgICAiYWN0aXZlIjogdHJ1ZSwKICAgICAgICAgICJiaWxsaW5nX3NjaGVtZSI6ICJwZXJfdW5pdCIsCiAgICAgICAgICAiY3JlYXRlZCI6IDE2OTk1NjAzODksCiAgICAgICAgICAiY3VycmVuY3kiOiAidXNkIiwKICAgICAgICAgICJjdXN0b21fdW5pdF9hbW91bnQiOiBudWxsLAogICAgICAgICAgImxpdmVtb2RlIjogZmFsc2UsCiAgICAgICAgICAibG9va3VwX2tleSI6IG51bGwsCiAgICAgICAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgICAgICJzYWxlc2ZvcmNlX3ByaWNlYm9va19lbnRyeV9pZCI6ICIwMXU2czAwMDAwNk15UmFBQUsiLAogICAgICAgICAgICAic2FsZXNmb3JjZV9wcmljZWJvb2tfZW50cnlfbGluayI6ICJodHRwczovL2Nvbm5lY3Qtc2Fhcy04OTgyMi1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS8wMXU2czAwMDAwNk15UmFBQUsiCiAgICAgICAgICB9LAogICAgICAgICAgIm5pY2tuYW1lIjogbnVsbCwKICAgICAgICAgICJwcm9kdWN0IjogInByb2RfT3liaUE1WEc1eXJ2bWgiLAogICAgICAgICAgInJlY3VycmluZyI6IHsKICAgICAgICAgICAgImFnZ3JlZ2F0ZV91c2FnZSI6IG51bGwsCiAgICAgICAgICAgICJpbnRlcnZhbCI6ICJtb250aCIsCiAgICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAgICJ0cmlhbF9wZXJpb2RfZGF5cyI6IG51bGwsCiAgICAgICAgICAgICJ1c2FnZV90eXBlIjogImxpY2Vuc2VkIgogICAgICAgICAgfSwKICAgICAgICAgICJ0YXhfYmVoYXZpb3IiOiAidW5zcGVjaWZpZWQiLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV9xdWFudGl0eSI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJyZWN1cnJpbmciLAogICAgICAgICAgInVuaXRfYW1vdW50IjogMTIwMDAsCiAgICAgICAgICAidW5pdF9hbW91bnRfZGVjaW1hbCI6ICIxMjAwMCIKICAgICAgICB9LAogICAgICAgICJwcm9yYXRpb24iOiBmYWxzZSwKICAgICAgICAicHJvcmF0aW9uX2RldGFpbHMiOiB7CiAgICAgICAgICAiY3JlZGl0ZWRfaXRlbXMiOiBudWxsCiAgICAgICAgfSwKICAgICAgICAicXVhbnRpdHkiOiAxLAogICAgICAgICJyZW5kZXJpbmciOiBudWxsLAogICAgICAgICJzdWJzY3JpcHRpb24iOiAic3ViXzFPQWVVbElzZ2Y5MlhiQU9HSHFVMWlHMiIsCiAgICAgICAgInN1YnNjcmlwdGlvbl9pdGVtIjogInNpX095YmlyQzlINzkwOG9vIiwKICAgICAgICAidGF4X2Ftb3VudHMiOiBbXSwKICAgICAgICAidGF4X3JhdGVzIjogW10sCiAgICAgICAgInR5cGUiOiAic3Vic2NyaXB0aW9uIiwKICAgICAgICAidW5pdF9hbW91bnRfZXhjbHVkaW5nX3RheCI6ICIxMjAwMCIKICAgICAgfQogICAgXSwKICAgICJoYXNfbW9yZSI6IGZhbHNlLAogICAgInRvdGFsX2NvdW50IjogMSwKICAgICJ1cmwiOiAiL3YxL2ludm9pY2VzL3VwY29taW5nL2xpbmVzP3N1YnNjcmlwdGlvbj1zdWJfMU9BZVVsSXNnZjkyWGJBT0dIcVUxaUcyIgogIH0sCiAgImxpdmVtb2RlIjogZmFsc2UsCiAgIm1ldGFkYXRhIjoge30sCiAgIm5leHRfcGF5bWVudF9hdHRlbXB0IjogMTcwMjA4MzYwMCwKICAibnVtYmVyIjogbnVsbCwKICAib25fYmVoYWxmX29mIjogbnVsbCwKICAicGFpZCI6IGZhbHNlLAogICJwYWlkX291dF9vZl9iYW5kIjogZmFsc2UsCiAgInBheW1lbnRfaW50ZW50IjogbnVsbCwKICAicGF5bWVudF9zZXR0aW5ncyI6IHsKICAgICJkZWZhdWx0X21hbmRhdGUiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX29wdGlvbnMiOiBudWxsLAogICAgInBheW1lbnRfbWV0aG9kX3R5cGVzIjogbnVsbAogIH0sCiAgInBlcmlvZF9lbmQiOiAxNzAyMDgwMDAwLAogICJwZXJpb2Rfc3RhcnQiOiAxNjk5NTYwMzkxLAogICJwb3N0X3BheW1lbnRfY3JlZGl0X25vdGVzX2Ftb3VudCI6IDAsCiAgInByZV9wYXltZW50X2NyZWRpdF9ub3Rlc19hbW91bnQiOiAwLAogICJxdW90ZSI6IG51bGwsCiAgInJlY2VpcHRfbnVtYmVyIjogbnVsbCwKICAicmVuZGVyaW5nIjogbnVsbCwKICAicmVuZGVyaW5nX29wdGlvbnMiOiBudWxsLAogICJzaGlwcGluZ19jb3N0IjogbnVsbCwKICAic2hpcHBpbmdfZGV0YWlscyI6IG51bGwsCiAgInN0YXJ0aW5nX2JhbGFuY2UiOiAwLAogICJzdGF0ZW1lbnRfZGVzY3JpcHRvciI6IG51bGwsCiAgInN0YXR1cyI6ICJkcmFmdCIsCiAgInN0YXR1c190cmFuc2l0aW9ucyI6IHsKICAgICJmaW5hbGl6ZWRfYXQiOiBudWxsLAogICAgIm1hcmtlZF91bmNvbGxlY3RpYmxlX2F0IjogbnVsbCwKICAgICJwYWlkX2F0IjogbnVsbCwKICAgICJ2b2lkZWRfYXQiOiBudWxsCiAgfSwKICAic3Vic2NyaXB0aW9uIjogInN1Yl8xT0FlVWxJc2dmOTJYYkFPR0hxVTFpRzIiLAogICJzdWJzY3JpcHRpb25fZGV0YWlscyI6IHsKICAgICJtZXRhZGF0YSI6IHsKICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfaWQiOiAiODAxNnMwMDAwMDFGWHlUQUFXIiwKICAgICAgInNhbGVzZm9yY2Vfb3JkZXJfbGluayI6ICJodHRwczovL2Nvbm5lY3Qtc2Fhcy04OTgyMi1kZXYtZWQuc2NyYXRjaC5teS5zYWxlc2ZvcmNlLmNvbS84MDE2czAwMDAwMUZYeVRBQVciCiAgICB9CiAgfSwKICAic3VidG90YWwiOiAxMjAwMCwKICAic3VidG90YWxfZXhjbHVkaW5nX3RheCI6IDEyMDAwLAogICJ0YXgiOiBudWxsLAogICJ0ZXN0X2Nsb2NrIjogbnVsbCwKICAidG90YWwiOiAxMjAwMCwKICAidG90YWxfZGlzY291bnRfYW1vdW50cyI6IFtdLAogICJ0b3RhbF9leGNsdWRpbmdfdGF4IjogMTIwMDAsCiAgInRvdGFsX3RheF9hbW91bnRzIjogW10sCiAgInRyYW5zZmVyX2RhdGEiOiBudWxsLAogICJ3ZWJob29rc19kZWxpdmVyZWRfYXQiOiBudWxsCn0= + recorded_at: Thu, 09 Nov 2023 20:07:04 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7 body: encoding: US-ASCII string: '' @@ -10907,13 +11337,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_89uFdEuiIFtJdm","request_duration_ms":352}}' + - '{"last_request_metrics":{"request_id":"req_oa9tpUMKLEVtx3","request_duration_ms":378}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10928,31 +11358,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:47 GMT + - Thu, 09 Nov 2023 20:07:05 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_BRZcPMkij3CIdx + - req_VZeI66vhnbv4qH Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10961,17 +11399,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1722556800, - "start_date": 1690934400 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -10990,8 +11428,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -11006,29 +11444,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -11038,13 +11476,63 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXyYAAW%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 20:07:05 GMT + Set-Cookie: + - BrowserId=jbJiK387Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=544/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ"},"Id":"a1N6s00000113iPEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:05 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nR80AAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DwbAAE%27 body: encoding: US-ASCII string: '' @@ -11063,12 +11551,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:48 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Set-Cookie: - - BrowserId=ICeqKDF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:48 + - BrowserId=jb_2yX87Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11081,7 +11569,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13657/5000000 + - api-usage=537/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -11090,11 +11578,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ"},"Id":"a1N7e000002fm3CEAQ"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKNDEA4"},"Id":"a1Q6s000001FKNDEA4"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ body: encoding: US-ASCII string: '' @@ -11113,12 +11601,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:48 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Set-Cookie: - - BrowserId=IGoxejF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:48 + - BrowserId=jcwEdH87Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11131,9 +11619,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13658/5000000 + - api-usage=552/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:27 GMT + - Thu, 09 Nov 2023 20:06:53 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -11142,12 +11630,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ"},"Id":"a1N7e000002fm3CEAQ","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0147","CreatedDate":"2023-08-02T21:32:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:27.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nR80AAE","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFvBEAW","Stripe_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_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ"},"Id":"a1N6s00000113iPEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0017","CreatedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:53.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:53.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXyYAAW","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJ1EAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFvBEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ1EAI body: encoding: US-ASCII string: '' @@ -11166,12 +11654,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:48 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Set-Cookie: - - BrowserId=IK4X2jF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:48 + - BrowserId=jdrSHn87Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11184,9 +11672,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13657/5000000 + - api-usage=543/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:18 GMT + - Thu, 09 Nov 2023 20:06:47 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -11195,15 +11683,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFvBEAW"},"Id":"a1R7e000007JFvBEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0128","CreatedDate":"2023-08-02T21:32:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:18.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:18.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ1EAI"},"Id":"a1R6s000000uvJ1EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0016","CreatedDate":"2023-11-09T20:06:47.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:06:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:06:47.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002fm3CEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002fm3CEAQ¤cy=usd + string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iPEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iPEAQ¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -11212,15 +11700,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_BRZcPMkij3CIdx","request_duration_ms":196}}' + - '{"last_request_metrics":{"request_id":"req_r9KUEduVLhDalV","request_duration_ms":277}}' Idempotency-Key: - - ed7e0bc6-a50b-4f47-a077-5fb3e55487ee + - cfcee613-dbfe-4a7e-9b86-efeff6a2b0da 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11235,37 +11723,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:49 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ed7e0bc6-a50b-4f47-a077-5fb3e55487ee + - cfcee613-dbfe-4a7e-9b86-efeff6a2b0da Original-Request: - - req_lmkGyZRzQ6lyE6 + - req_XpfyhGkKp3lHrJ Request-Id: - - req_lmkGyZRzQ6lyE6 + - req_XpfyhGkKp3lHrJ 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: @@ -11274,18 +11769,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "BCaLcHzp", + "id": "Y4ggueYd", "object": "coupon", "amount_off": 1000, - "created": 1691011969, + "created": 1699560425, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm3CEAQ", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm3CEAQ" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iPEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iPEAQ" }, "name": "$10 off coupon", "percent_off": null, @@ -11293,13 +11788,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"BCaLcHzp"}' + string: '{"Stripe_ID__c":"Y4ggueYd"}' headers: User-Agent: - Faraday v2.4.0 @@ -11317,12 +11812,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:49 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Set-Cookie: - - BrowserId=IRZPmjF8Ee6D1WVD64aMRQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:49 + - BrowserId=jhBg6H87Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11337,17 +11832,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13658/5000000 + - api-usage=546/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JFvBEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvJ1EAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"BCaLcHzp"}' + string: '{"Stripe_ID__c":"Y4ggueYd"}' headers: User-Agent: - Faraday v2.4.0 @@ -11365,12 +11860,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:50 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Set-Cookie: - - BrowserId=IVuV2jF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:50 + - BrowserId=jiFQvX87Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11385,14 +11880,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13659/5000000 + - api-usage=544/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:05 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ONXjffuNL3yAsF?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OybiNZbftqIZ1W?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -11404,13 +11899,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_lmkGyZRzQ6lyE6","request_duration_ms":219}}' + - '{"last_request_metrics":{"request_id":"req_VZeI66vhnbv4qH","request_duration_ms":202}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11425,31 +11920,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:50 GMT + - Thu, 09 Nov 2023 20:07:06 GMT Content-Type: - application/json Content-Length: - - '850' + - '845' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_GnAt670UnDBVbu + - req_4TMi3oZ4ukN20t Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11458,11 +11961,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ONXjffuNL3yAsF", + "id": "cus_OybiNZbftqIZ1W", "object": "customer", "address": null, "balance": 0, - "created": 1691011916, + "created": 1699560387, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -11470,7 +11973,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "90540B2E", + "invoice_prefix": "2FDC5DE5", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -11479,10 +11982,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iaMUOAA2", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iaMUOAA2" + "salesforce_account_id": "0016s00000fzBqzAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBqzAAE" }, - "name": "REST Account 2023-08-02 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -11490,13 +11993,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:06 GMT - request: method: post - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7 body: encoding: UTF-8 - string: phases[0][currency]=usd&phases[0][end_date]=1706832000&phases[0][items][0][billing_thresholds]=&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bQelAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQelAAE&phases[0][items][0][plan]=price_1NameEIsgf92XbAORdsSCVw2&phases[0][items][0][price]=price_1NameEIsgf92XbAORdsSCVw2&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=8017e000000nR7vAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR7vAAE&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1690934400&phases[1][items][0][price]=price_1NameEIsgf92XbAORdsSCVw2&phases[1][items][0][metadata][salesforce_order_item_id]=8027e000001bQelAAE&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQelAAE&phases[1][items][0][discounts]=&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1NamewIsgf92XbAOjyRWHBwa&phases[1][items][1][metadata][salesforce_order_item_id]=8027e000001bQeqAAE&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bQeqAAE&phases[1][items][1][discounts][0][coupon]=1TbGDmr7&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=8017e000000nR80AAE&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nR80AAE&phases[1][start_date]=1706832000&phases[1][end_date]=1722556800&phases[1][discounts][0][coupon]=BCaLcHzp&proration_behavior=none + string: phases[0][currency]=usd&phases[0][end_date]=1715212800&phases[0][items][0][billing_thresholds]=&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvsAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvsAAE&phases[0][items][0][plan]=price_1OAeUjIsgf92XbAOndJycPiW&phases[0][items][0][price]=price_1OAeUjIsgf92XbAOndJycPiW&phases[0][items][0][quantity]=1&phases[0][metadata][salesforce_order_id]=8016s000001FXyTAAW&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyTAAW&phases[0][proration_behavior]=create_prorations&phases[0][start_date]=1699488000&phases[1][items][0][price]=price_1OAeUjIsgf92XbAOndJycPiW&phases[1][items][0][metadata][salesforce_order_item_id]=8026s0000014MvsAAE&phases[1][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvsAAE&phases[1][items][0][discounts]=&phases[1][items][0][quantity]=1&phases[1][items][1][price]=price_1OAeVIIsgf92XbAO99E4LqFf&phases[1][items][1][metadata][salesforce_order_item_id]=8026s0000014MvxAAE&phases[1][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvxAAE&phases[1][items][1][discounts][0][coupon]=iRdh77ch&phases[1][items][1][quantity]=1&phases[1][proration_behavior]=none&phases[1][metadata][salesforce_order_id]=8016s000001FXyYAAW&phases[1][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyYAAW&phases[1][start_date]=1715212800&phases[1][end_date]=1731110400&phases[1][discounts][0][coupon]=Y4ggueYd&proration_behavior=none headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -11505,15 +12008,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GnAt670UnDBVbu","request_duration_ms":264}}' + - '{"last_request_metrics":{"request_id":"req_4TMi3oZ4ukN20t","request_duration_ms":245}}' Idempotency-Key: - - 581b6439-fe59-498b-b599-c58702dfd4c9 + - 397ed1e6-81ed-41a3-bebf-356dc9b13c6c 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11528,37 +12031,45 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:51 GMT + - Thu, 09 Nov 2023 20:07:06 GMT Content-Type: - application/json Content-Length: - - '4449' + - '4419' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 581b6439-fe59-498b-b599-c58702dfd4c9 + - 397ed1e6-81ed-41a3-bebf-356dc9b13c6c Original-Request: - - req_9Mq8zoFCGTIix6 + - req_k6iXKSH3fN0fxS Request-Id: - - req_9Mq8zoFCGTIix6 + - req_k6iXKSH3fN0fxS 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: @@ -11567,17 +12078,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1706832000, - "start_date": 1690934400 + "end_date": 1715212800, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -11599,8 +12110,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -11615,29 +12126,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1706832000, + "end_date": 1715212800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null }, @@ -11647,29 +12158,29 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "BCaLcHzp", + "coupon": "Y4ggueYd", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "BCaLcHzp", + "coupon": "Y4ggueYd", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] }, @@ -11677,27 +12188,27 @@ http_interactions: "billing_thresholds": null, "discounts": [ { - "coupon": "1TbGDmr7", + "coupon": "iRdh77ch", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQeqAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQeqAAE" + "salesforce_order_item_id": "8026s0000014MvxAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvxAAE" }, - "plan": "price_1NamewIsgf92XbAOjyRWHBwa", - "price": "price_1NamewIsgf92XbAOjyRWHBwa", + "plan": "price_1OAeVIIsgf92XbAO99E4LqFf", + "price": "price_1OAeVIIsgf92XbAO99E4LqFf", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR80AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR80AAE" + "salesforce_order_id": "8016s000001FXyYAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyYAAW" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1706832000, + "start_date": 1715212800, "transfer_data": null, "trial_end": null } @@ -11707,16 +12218,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:06 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nR80AAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyYAAW body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NameGIsgf92XbAOtZ3vjAEA"}' + string: '{"Stripe_ID__c":"sub_sched_1OAeUlIsgf92XbAO2pPTthj7"}' headers: User-Agent: - Faraday v2.4.0 @@ -11734,12 +12245,12 @@ http_interactions: message: No Content headers: Date: - - Wed, 02 Aug 2023 21:32:51 GMT + - Thu, 09 Nov 2023 20:07:07 GMT Set-Cookie: - - BrowserId=Ij5UkzF8Ee6zP-UM59rdCw; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:51 + - BrowserId=jsfJo387Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11754,18 +12265,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13659/5000000 + - api-usage=553/5000000 body: encoding: UTF-8 string: '' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:07 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nR80AAE-8017e000000nR80AAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXyYAAW-8016s000001FXyYAAW body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR80AAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR80AAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXyYAAW","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXyYAAW","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAeUlIsgf92XbAO2pPTthj7","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":null}' headers: User-Agent: - Faraday v2.4.0 @@ -11783,12 +12294,12 @@ http_interactions: message: Created headers: Date: - - Wed, 02 Aug 2023 21:32:52 GMT + - Thu, 09 Nov 2023 20:07:07 GMT Set-Cookie: - - BrowserId=IpowkjF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:52 + - BrowserId=junQiH87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -11801,20 +12312,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13660/5000000 + - api-usage=544/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrxtEAC" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000Ky1aEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrxtEAC","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"id":"a1W6s000000Ky1aEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 20:07:07 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -11826,13 +12337,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_9Mq8zoFCGTIix6","request_duration_ms":759}}' + - '{"last_request_metrics":{"request_id":"req_k6iXKSH3fN0fxS","request_duration_ms":703}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -11847,31 +12358,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:52 GMT + - Thu, 09 Nov 2023 20:07:07 GMT Content-Type: - application/json Content-Length: - - '7871' + - '7826' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_o8m85JfZhAypWB + - req_9hR5qyuvJi6JRs Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -11880,17 +12399,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1706832000, - "start_date": 1690934400 + "end_date": 1715212800, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -11912,8 +12431,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -11928,33 +12447,33 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1706832000, + "end_date": 1715212800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", "price": { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -11974,12 +12493,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null }, @@ -11989,44 +12508,44 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "BCaLcHzp", + "coupon": "Y4ggueYd", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "BCaLcHzp", + "coupon": "Y4ggueYd", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", "price": { - "id": "price_1NameEIsgf92XbAORdsSCVw2", + "id": "price_1OAeUjIsgf92XbAOndJycPiW", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011922, + "created": 1699560389, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12048,21 +12567,21 @@ http_interactions: "billing_thresholds": null, "discounts": [ { - "coupon": "1TbGDmr7", + "coupon": "iRdh77ch", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQeqAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQeqAAE" + "salesforce_order_item_id": "8026s0000014MvxAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvxAAE" }, - "plan": "price_1NamewIsgf92XbAOjyRWHBwa", + "plan": "price_1OAeVIIsgf92XbAO99E4LqFf", "price": { - "id": "price_1NamewIsgf92XbAOjyRWHBwa", + "id": "price_1OAeVIIsgf92XbAO99E4LqFf", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1691011966, + "created": 1699560424, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -12070,12 +12589,12 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_original_stripe_price_id": "price_1NameEIsgf92XbAORdsSCVw2", - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_original_stripe_price_id": "price_1OAeUjIsgf92XbAOndJycPiW", + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12095,12 +12614,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nR80AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR80AAE" + "salesforce_order_id": "8016s000001FXyYAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyYAAW" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1706832000, + "start_date": 1715212800, "transfer_data": null, "trial_end": null } @@ -12110,13 +12629,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:07 GMT - request: method: post - uri: https://api.stripe.com/v1/prices/price_1NamewIsgf92XbAOjyRWHBwa + uri: https://api.stripe.com/v1/prices/price_1OAeVIIsgf92XbAO99E4LqFf body: encoding: UTF-8 string: active=false @@ -12128,15 +12647,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_o8m85JfZhAypWB","request_duration_ms":259}}' + - '{"last_request_metrics":{"request_id":"req_9hR5qyuvJi6JRs","request_duration_ms":235}}' Idempotency-Key: - - 0eb6e8eb-0c8a-4184-82a2-46434c6941d2 + - 3e784db9-e128-46ae-9340-fba49d0e6255 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12151,37 +12670,44 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:52 GMT + - Thu, 09 Nov 2023 20:07:07 GMT Content-Type: - application/json Content-Length: - - '975' + - '970' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices%2F%3Aprice; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 0eb6e8eb-0c8a-4184-82a2-46434c6941d2 + - 3e784db9-e128-46ae-9340-fba49d0e6255 Original-Request: - - req_4xw7mIUnxuWUfC + - req_qQTv0ptl6rFuSE Request-Id: - - req_4xw7mIUnxuWUfC + - req_qQTv0ptl6rFuSE 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: @@ -12190,11 +12716,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NamewIsgf92XbAOjyRWHBwa", + "id": "price_1OAeVIIsgf92XbAO99E4LqFf", "object": "price", "active": false, "billing_scheme": "per_unit", - "created": 1691011966, + "created": 1699560424, "currency": "usd", "custom_unit_amount": null, "livemode": false, @@ -12202,12 +12728,12 @@ http_interactions: "metadata": { "salesforce_auto_archive": "true", "salesforce_duplicate": "true", - "salesforce_original_stripe_price_id": "price_1NameEIsgf92XbAORdsSCVw2", - "salesforce_pricebook_entry_id": "01u7e00000IsjgEAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000IsjgEAAR" + "salesforce_original_stripe_price_id": "price_1OAeUjIsgf92XbAOndJycPiW", + "salesforce_pricebook_entry_id": "01u6s000006MyRaAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRaAAK" }, "nickname": null, - "product": "prod_ONXj2SLLbrOhMy", + "product": "prod_OybiA5XG5yrvmh", "recurring": { "aggregate_usage": null, "interval": "month", @@ -12222,10 +12748,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:07 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NameGIsgf92XbAOtZ3vjAEA + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAeUlIsgf92XbAO2pPTthj7 body: encoding: US-ASCII string: '' @@ -12237,13 +12763,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4xw7mIUnxuWUfC","request_duration_ms":238}}' + - '{"last_request_metrics":{"request_id":"req_qQTv0ptl6rFuSE","request_duration_ms":285}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12258,31 +12784,39 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:52 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Content-Type: - application/json Content-Length: - - '4449' + - '4419' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_9GGMvU2PONvhsW + - req_9GdgFDOLNeHgRU Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12291,17 +12825,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NameGIsgf92XbAOtZ3vjAEA", + "id": "sub_sched_1OAeUlIsgf92XbAO2pPTthj7", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1691011924, + "created": 1699560391, "current_phase": { - "end_date": 1706832000, - "start_date": 1690934400 + "end_date": 1715212800, + "start_date": 1699488000 }, - "customer": "cus_ONXjffuNL3yAsF", + "customer": "cus_OybiNZbftqIZ1W", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -12323,8 +12857,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "phases": [ { @@ -12339,29 +12873,29 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1706832000, + "end_date": 1715212800, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR7vAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR7vAAE" + "salesforce_order_id": "8016s000001FXyTAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyTAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690934400, + "start_date": 1699488000, "transfer_data": null, "trial_end": null }, @@ -12371,29 +12905,29 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "BCaLcHzp", + "coupon": "Y4ggueYd", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "BCaLcHzp", + "coupon": "Y4ggueYd", "discount": null } ], - "end_date": 1722556800, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [], "metadata": { - "salesforce_order_item_id": "8027e000001bQelAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQelAAE" + "salesforce_order_item_id": "8026s0000014MvsAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvsAAE" }, - "plan": "price_1NameEIsgf92XbAORdsSCVw2", - "price": "price_1NameEIsgf92XbAORdsSCVw2", + "plan": "price_1OAeUjIsgf92XbAOndJycPiW", + "price": "price_1OAeUjIsgf92XbAOndJycPiW", "quantity": 1, "tax_rates": [] }, @@ -12401,27 +12935,27 @@ http_interactions: "billing_thresholds": null, "discounts": [ { - "coupon": "1TbGDmr7", + "coupon": "iRdh77ch", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bQeqAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bQeqAAE" + "salesforce_order_item_id": "8026s0000014MvxAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvxAAE" }, - "plan": "price_1NamewIsgf92XbAOjyRWHBwa", - "price": "price_1NamewIsgf92XbAOjyRWHBwa", + "plan": "price_1OAeVIIsgf92XbAO99E4LqFf", + "price": "price_1OAeVIIsgf92XbAO99E4LqFf", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nR80AAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nR80AAE" + "salesforce_order_id": "8016s000001FXyYAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyYAAW" }, "on_behalf_of": null, "proration_behavior": "none", - "start_date": 1706832000, + "start_date": 1715212800, "transfer_data": null, "trial_end": null } @@ -12431,13 +12965,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NameGIsgf92XbAO29VMrgyo", + "subscription": "sub_1OAeUlIsgf92XbAOGHqU1iG2", "test_clock": null } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:08 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/BCaLcHzp + uri: https://api.stripe.com/v1/coupons/Y4ggueYd body: encoding: US-ASCII string: '' @@ -12449,13 +12983,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_9GGMvU2PONvhsW","request_duration_ms":277}}' + - '{"last_request_metrics":{"request_id":"req_9GdgFDOLNeHgRU","request_duration_ms":221}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12470,31 +13004,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:53 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_kIre7YfW56rUWu + - req_FAwT7hKYZO1AfT Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12503,18 +13044,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "BCaLcHzp", + "id": "Y4ggueYd", "object": "coupon", "amount_off": 1000, - "created": 1691011969, + "created": 1699560425, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm3CEAQ", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm3CEAQ" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iPEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iPEAQ" }, "name": "$10 off coupon", "percent_off": null, @@ -12522,10 +13063,10 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:08 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JFvBEAW%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvJ1EAI%27 body: encoding: US-ASCII string: '' @@ -12544,12 +13085,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:53 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Set-Cookie: - - BrowserId=I33Z8TF8Ee62C8Em1N2UiQ; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:53 + - BrowserId=j5Fb4387Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12562,7 +13103,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13662/5000000 + - api-usage=544/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -12571,11 +13112,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ"},"Id":"a1N7e000002fm3CEAQ"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ"},"Id":"a1N6s00000113iPEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:08 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ body: encoding: US-ASCII string: '' @@ -12594,12 +13135,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:53 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Set-Cookie: - - BrowserId=I7c5qjF8Ee6slA99ZXSlDA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:53 + - BrowserId=j51CHX87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12612,9 +13153,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13643/5000000 + - api-usage=545/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:49 GMT + - Thu, 09 Nov 2023 20:07:05 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -12623,12 +13164,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3CEAQ"},"Id":"a1N7e000002fm3CEAQ","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0147","CreatedDate":"2023-08-02T21:32:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:49.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:49.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nR80AAE","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFvBEAW","Stripe_ID__c":"BCaLcHzp","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/BCaLcHzp"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iPEAQ"},"Id":"a1N6s00000113iPEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0017","CreatedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:05.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:05.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXyYAAW","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvJ1EAI","Stripe_ID__c":"Y4ggueYd","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/Y4ggueYd"}' + recorded_at: Thu, 09 Nov 2023 20:07:08 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/1TbGDmr7 + uri: https://api.stripe.com/v1/coupons/iRdh77ch body: encoding: US-ASCII string: '' @@ -12640,13 +13181,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kIre7YfW56rUWu","request_duration_ms":188}}' + - '{"last_request_metrics":{"request_id":"req_FAwT7hKYZO1AfT","request_duration_ms":211}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -12661,31 +13202,38 @@ http_interactions: Server: - nginx Date: - - Wed, 02 Aug 2023 21:32:54 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Content-Type: - application/json Content-Length: - - '538' + - '533' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_CoC9Mp0vAkhdRZ + - req_MfHNAit5wcPfzb Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -12694,18 +13242,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "1TbGDmr7", + "id": "iRdh77ch", "object": "coupon", "amount_off": null, - "created": 1691011962, + "created": 1699560422, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002fm3DEAQ", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002fm3DEAQ" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iQEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iQEAQ" }, "name": "26.7% off coupon", "percent_off": 26.7, @@ -12713,10 +13261,10 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + recorded_at: Thu, 09 Nov 2023 20:07:08 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JFv6EAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvIwEAI%27 body: encoding: US-ASCII string: '' @@ -12735,12 +13283,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:54 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Set-Cookie: - - BrowserId=JA2-CTF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:54 + - BrowserId=j8dffX87Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12753,7 +13301,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13661/5000000 + - api-usage=542/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -12762,11 +13310,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ"},"Id":"a1N7e000002fm3DEAQ"}]}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ"},"Id":"a1N6s00000113iQEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 20:07:08 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ body: encoding: US-ASCII string: '' @@ -12785,12 +13333,12 @@ http_interactions: message: OK headers: Date: - - Wed, 02 Aug 2023 21:32:54 GMT + - Thu, 09 Nov 2023 20:07:08 GMT Set-Cookie: - - BrowserId=JEVI2zF8Ee64MQH0yCvBGA; domain=.salesforce.com; path=/; expires=Thu, - 01-Aug-2024 21:32:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 01-Aug-2024 21:32:54 + - BrowserId=j9dk8n87Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 20:07:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -12803,9 +13351,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=13662/5000000 + - api-usage=546/5000000 Last-Modified: - - Wed, 02 Aug 2023 21:32:43 GMT + - Thu, 09 Nov 2023 20:07:02 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -12814,113 +13362,7 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002fm3DEAQ"},"Id":"a1N7e000002fm3DEAQ","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0148","CreatedDate":"2023-08-02T21:32:27.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-02T21:32:43.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-02T21:32:43.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"26.7% - off coupon","Order_Item__c":"8027e000001bQeqAAE","Order__c":null,"Percent_Off__c":26.7,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JFv6EAG","Stripe_ID__c":"1TbGDmr7","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/1TbGDmr7"}' - recorded_at: Wed, 02 Aug 2023 21:22:26 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/8017e000000nR7vAAE-8017e000000nR7vAAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR7vAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR7vAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_EQpZajSMMyqOef"}' - 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: - - Wed, 11 Oct 2023 16:37:58 GMT - Set-Cookie: - - BrowserId=iWgAMmhUEe6YDDXEZllftw; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:37:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37:58 - GMT; Max-Age=31536000 - Strict-Transport-Security: - - max-age=63072000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Xss-Protection: - - 1; mode=block - X-Robots-Tag: - - none - Cache-Control: - - no-cache,must-revalidate,max-age=0,no-store,private - Sforce-Limit-Info: - - api-usage=82/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCnSUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCnSUAW","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 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/8017e000000nR80AAE-8017e000000nR80AAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nR80AAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nR80AAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NameGIsgf92XbAOtZ3vjAEA","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":null}' - 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: - - Wed, 11 Oct 2023 16:37:59 GMT - Set-Cookie: - - BrowserId=ibUPjGhUEe6uf8s-qFK0gA; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:37:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:37: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=83/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCpSUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCpSUAW","success":true,"errors":[],"created":true}' - recorded_at: Wed, 02 Aug 2023 21:22:26 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iQEAQ"},"Id":"a1N6s00000113iQEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0018","CreatedDate":"2023-11-09T20:06:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T20:07:02.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T20:07:02.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"26.7% + off coupon","Order_Item__c":"8026s0000014MvxAAE","Order__c":null,"Percent_Off__c":26.7,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvIwEAI","Stripe_ID__c":"iRdh77ch","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/iRdh77ch"}' + recorded_at: Thu, 09 Nov 2023 20:07:08 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/creates_a_new_stripe_coupon_if_the_sf_quote_coupon_is_modified.yml b/test/vcr_cassettes/integration/translate/test_coupon/creates_a_new_stripe_coupon_if_the_sf_quote_coupon_is_modified.yml index 281b3dcd00..e81bde8a07 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/creates_a_new_stripe_coupon_if_the_sf_quote_coupon_is_modified.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/creates_a_new_stripe_coupon_if_the_sf_quote_coupon_is_modified.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:22 GMT + - Thu, 09 Nov 2023 19:19:17 GMT Set-Cookie: - - BrowserId=YvHaZTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:22 + - BrowserId=4DrxQH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7086/5000000 + - api-usage=78/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBdqAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZwjPAAS","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBdqAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:22 GMT + - Thu, 09 Nov 2023 19:19:17 GMT Set-Cookie: - - BrowserId=Y0N84DCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:22 + - BrowserId=4GTAPn80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7087/5000000 + - api-usage=75/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qPAAQ" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnPhAAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qPAAQ","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:23 GMT + - Thu, 09 Nov 2023 19:19:17 GMT Set-Cookie: - - BrowserId=Y4v4TzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:23 + - BrowserId=4IVno380Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7083/5000000 + - api-usage=76/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPhAAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qPAAQ","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:23 GMT + - Thu, 09 Nov 2023 19:19:17 GMT Set-Cookie: - - BrowserId=Y8hkrTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:23 + - BrowserId=4JT3kH80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7082/5000000 + - api-usage=70/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6HAAR" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyR1AAK" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6HAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyR1AAK","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:24 GMT + - Thu, 09 Nov 2023 19:19:17 GMT Set-Cookie: - - BrowserId=ZAnaRDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:24 + - BrowserId=4Kuzhn80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7083/5000000 + - api-usage=70/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwjPAAS"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBdqAAE"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:24 GMT + - Thu, 09 Nov 2023 19:19:18 GMT Set-Cookie: - - BrowserId=ZEX4_zCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:24 + - BrowserId=4LtrWX80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7088/5000000 + - api-usage=79/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NeulxAAB" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1JAAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NeulxAAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1JAAV","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"create_new_stripe_coupon@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:25 GMT + - Thu, 09 Nov 2023 19:19:18 GMT Set-Cookie: - - BrowserId=ZI_TXjCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:25 + - BrowserId=4OD0vX80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7083/5000000 + - api-usage=80/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHniIAAS" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY992AAD" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHniIAAS","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY992AAD","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000NeulxAAB","SBQQ__PrimaryContact__c":"0037e00001jHniIAAS","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12.0}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1JAAV","SBQQ__PrimaryContact__c":"0036s00000WY992AAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12.0}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:26 GMT + - Thu, 09 Nov 2023 19:19:18 GMT Set-Cookie: - - BrowserId=ZT_pmzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:26 + - BrowserId=4QQNIn80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7084/5000000 + - api-usage=81/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJmcAAH","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DsVAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:27 GMT + - Thu, 09 Nov 2023 19:19:19 GMT Set-Cookie: - - BrowserId=ZgBS8DCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:27 + - BrowserId=4VTFk380Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7093/5000000 + - api-usage=73/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJmcAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DsVAAU body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:27 GMT + - Thu, 09 Nov 2023 19:19:19 GMT Set-Cookie: - - BrowserId=ZjfeQTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:27 + - BrowserId=4WCErX80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"Id\":\"a0z7e00000BDJmcAAH\",\"Name\":\"Q-00879\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"Id\":\"a0z6s0000016DsVAAU\",\"Name\":\"Q-00196\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeulxAAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"Id\":\"0017e00001iZwjPAAS\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeulxAAB\"},\"Id\":\"0067e00000NeulxAAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1JAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"Id\":\"0066s00000CfE1JAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnPhAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qPAAQ body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:28 GMT + - Thu, 09 Nov 2023 19:19:20 GMT Set-Cookie: - - BrowserId=ZrlCvzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:28 + - BrowserId=4fPrF380Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyR1AAK\"},\"Product2Id\":\"01t6s000004g3qPAAQ\",\"Id\":\"01u6s000006MyR1AAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"Id\":\"a0z7e00000BDJmcAAH\",\"Name\":\"Q-00879\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"Id\":\"a0z6s0000016DsVAAU\",\"Name\":\"Q-00196\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeulxAAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"Id\":\"0017e00001iZwjPAAS\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeulxAAB\"},\"Id\":\"0067e00000NeulxAAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\"},\"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/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1JAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"Id\":\"0066s00000CfE1JAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyR1AAK\"},\"Product2Id\":\"01t6s000004g3qPAAQ\",\"Id\":\"01u6s000006MyR1AAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:29 GMT + - Thu, 09 Nov 2023 19:19:20 GMT Set-Cookie: - - BrowserId=Zy5ynTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:29 + - BrowserId=4lKtC380Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,30 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeulxAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000NeulxAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00879\",\"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\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeulxAAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"Id\":\"a0z6s0000016DsVAAU\",\"Name\":\"Q-00196\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1JAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"Id\":\"0066s00000CfE1JAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsVAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001675\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeulxAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000NeulxAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00879\",\"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\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeulxAAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"Id\":\"a0z6s0000016DsVAAU\",\"Name\":\"Q-00196\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1JAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"Id\":\"0066s00000CfE1JAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsVAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001675\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -671,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:32 GMT + - Thu, 09 Nov 2023 19:19:21 GMT Set-Cookie: - - BrowserId=aLnNrDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:32 + - BrowserId=4v1r-380Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -694,26 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"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/0067e00000NeulxAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000NeulxAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00879\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeulxAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmcAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"Id\":\"a0z6s0000016DsVAAU\",\"Name\":\"Q-00196\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1JAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"Id\":\"0066s00000CfE1JAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsVAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001676\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"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/0067e00000NeulxAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000NeulxAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00879\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeulxAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmcAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"Id\":\"a0z6s0000016DsVAAU\",\"Name\":\"Q-00196\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1JAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"Id\":\"0066s00000CfE1JAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsVAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001676\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:33 GMT + - Thu, 09 Nov 2023 19:19:22 GMT Set-Cookie: - - BrowserId=adHNozCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:33 + - BrowserId=44-aAn80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,17 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH\"},\"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/0067e00000NeulxAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmcAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000NeulxAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00879\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeulxAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmcAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmcAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWgBAAU\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmcAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"Id\":\"a0v7e000008xWgBAAU\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsVAAU\",\"AccountId\":\"0016s00000fzBdqAAE\",\"Id\":\"0066s00000CfE1JAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBdqAAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00196\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1JAAV\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DsVAAU\",\"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\":\"a0z6s0000016DsVAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcXAAQ\"},\"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-11-09 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\":\"a0z6s0000016DsVAAU\",\"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\":\"a0v6s000000tlcXAAQ\",\"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-0001676\",\"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\":\"01u6s000006MyR1AAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qPAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"55% off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":55}' @@ -787,12 +788,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:34 GMT + - Thu, 09 Nov 2023 19:19:23 GMT Set-Cookie: - - BrowserId=alIhNjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:34 + - BrowserId=49u-L380Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -805,9 +806,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7102/5000000 + - api-usage=81/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY" Content-Type: - application/json;charset=UTF-8 Vary: @@ -816,11 +817,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsCEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHZEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -839,12 +840,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:35 GMT + - Thu, 09 Nov 2023 19:19:23 GMT Set-Cookie: - - BrowserId=apPk5TCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:35 + - BrowserId=4-3mqH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -857,11 +858,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7095/5000000 + - api-usage=79/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -978,7 +979,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -989,14 +990,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1164,7 +1163,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 @@ -1180,7 +1180,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1198,9 +1200,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1344,9 +1345,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1468,9 +1469,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 @@ -1515,13 +1525,14 @@ http_interactions: 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":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 + 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":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 @@ -1757,7 +1768,8 @@ http_interactions: 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":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 + 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 @@ -1943,7 +1955,8 @@ http_interactions: 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":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 + 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 @@ -1954,7 +1967,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -2026,7 +2044,8 @@ http_interactions: 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":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 + 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 @@ -2072,7 +2091,8 @@ http_interactions: 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":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 + 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 @@ -2132,7 +2152,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2157,7 +2177,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2213,10 +2244,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU body: encoding: US-ASCII string: '' @@ -2235,12 +2266,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:36 GMT + - Thu, 09 Nov 2023 19:19:23 GMT Set-Cookie: - - BrowserId=ayp_YzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:36 + - BrowserId=5DrN4H80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2253,9 +2284,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7090/5000000 + - api-usage=74/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:34 GMT + - Thu, 09 Nov 2023 19:19:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2264,15 +2295,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH"},"Id":"a0z7e00000BDJmcAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00879","CreatedDate":"2023-08-01T18:58:26.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:34.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T18:58:34.000+0000","LastReferencedDate":"2023-08-01T18:58:34.000+0000","SBQQ__Account__c":"0017e00001iZwjPAAS","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T18:58:34.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":"0067e00000NeulxAAB","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHniIAAS","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU"},"Id":"a0z6s0000016DsVAAU","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00196","CreatedDate":"2023-11-09T19:19:18.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:23.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:19:23.000+0000","LastReferencedDate":"2023-11-09T19:19:23.000+0000","SBQQ__Account__c":"0016s00000fzBdqAAE","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:19:23.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":"0066s00000CfE1JAAV","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY992AAD","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJmcAAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DsVAAU%27 body: encoding: US-ASCII string: '' @@ -2291,12 +2322,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:36 GMT + - Thu, 09 Nov 2023 19:19:24 GMT Set-Cookie: - - BrowserId=a2c6-DCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:36 + - BrowserId=5EshwH80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2309,7 +2340,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7087/5000000 + - api-usage=77/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2318,11 +2349,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWgBAAU"},"Id":"a0v7e000008xWgBAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcXAAQ"},"Id":"a0v6s000000tlcXAAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWgBAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcXAAQ body: encoding: US-ASCII string: '' @@ -2341,12 +2372,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:36 GMT + - Thu, 09 Nov 2023 19:19:24 GMT Set-Cookie: - - BrowserId=a57sJDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:36 + - BrowserId=5FZsbH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2359,9 +2390,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7091/5000000 + - api-usage=75/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:34 GMT + - Thu, 09 Nov 2023 19:19:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2370,17 +2401,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWgBAAU"},"Id":"a0v7e000008xWgBAAU","IsDeleted":false,"Name":"QL-0001740","CreatedDate":"2023-08-01T18:58:34.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:34.000+0000","SBQQ__Quote__c":"a0z7e00000BDJmcAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6HAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPhAAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcXAAQ"},"Id":"a0v6s000000tlcXAAQ","IsDeleted":false,"Name":"QL-0001677","CreatedDate":"2023-11-09T19:19:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:23.000+0000","SBQQ__Quote__c":"a0z6s0000016DsVAAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyR1AAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qPAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWgBAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEsCEAW"}' + string: '{"Quote_Line__c":"a0v6s000000tlcXAAQ","Quote_Stripe_Coupon__c":"a1R6s000000uvHZEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -2398,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:37 GMT + - Thu, 09 Nov 2023 19:19:24 GMT Set-Cookie: - - BrowserId=a-cYwjCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:37 + - BrowserId=5G7WbX80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2416,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7092/5000000 + - api-usage=76/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVvhEAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5LEAS" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2427,11 +2458,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVvhEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5LEAS","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2452,12 +2483,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:37 GMT + - Thu, 09 Nov 2023 19:19:25 GMT Set-Cookie: - - BrowserId=bCPTxjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:37 + - BrowserId=5VbstH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2472,14 +2503,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7094/5000000 + - api-usage=73/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2498,12 +2529,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:39 GMT + - Thu, 09 Nov 2023 19:19:28 GMT Set-Cookie: - - BrowserId=bRU48zCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:39 + - BrowserId=5ww9uX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2516,7 +2547,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7096/5000000 + - api-usage=91/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2525,12 +2556,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6FAAU"},"Id":"8017e000000nQ6FAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeulxAAB","EffectiveDate":"2023-08-01","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":"00000970","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:58:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:38.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":"a0z7e00000BDJmcAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXxpAAG"},"Id":"8016s000001FXxpAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1JAAV","EffectiveDate":"2023-11-09","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":"00000267","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:28.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:28.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z6s0000016DsVAAU","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2551,12 +2582,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:39 GMT + - Thu, 09 Nov 2023 19:19:28 GMT Set-Cookie: - - BrowserId=bVJBeDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:39 + - BrowserId=5xxqiX80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2571,14 +2602,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7095/5000000 + - api-usage=94/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG body: encoding: US-ASCII string: '' @@ -2597,12 +2628,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:41 GMT + - Thu, 09 Nov 2023 19:19:29 GMT Set-Cookie: - - BrowserId=bj7EVTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:41 + - BrowserId=54nRpH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2615,9 +2646,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7103/5000000 + - api-usage=90/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:40 GMT + - Thu, 09 Nov 2023 19:19:28 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2626,13 +2657,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU"},"Id":"8017e000000nQ6FAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeulxAAB","EffectiveDate":"2023-08-01","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-01T18:58:40.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000970","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:58:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:40.000+0000","LastViewedDate":"2023-08-01T18:58:39.000+0000","LastReferencedDate":"2023-08-01T18:58:39.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By - Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJmcAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG"},"Id":"8016s000001FXxpAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1JAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:28.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000267","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:28.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:28.000+0000","LastViewedDate":"2023-11-09T19:19:28.000+0000","LastReferencedDate":"2023-11-09T19:19:28.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z6s0000016DsVAAU","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG body: encoding: US-ASCII string: '' @@ -2651,12 +2681,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:41 GMT + - Thu, 09 Nov 2023 19:19:29 GMT Set-Cookie: - - BrowserId=bnri_zCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:41 + - BrowserId=5532w380Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2669,9 +2699,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7104/5000000 + - api-usage=96/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:40 GMT + - Thu, 09 Nov 2023 19:19:29 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2680,16 +2710,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU"},"Id":"8017e000000nQ6FAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeulxAAB","EffectiveDate":"2023-08-01","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-01T18:58:40.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000970","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:58:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:40.000+0000","LastViewedDate":"2023-08-01T18:58:41.000+0000","LastReferencedDate":"2023-08-01T18:58:41.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG"},"Id":"8016s000001FXxpAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1JAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:28.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000267","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:29.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:29.000+0000","LastViewedDate":"2023-11-09T19:19:29.000+0000","LastReferencedDate":"2023-11-09T19:19:29.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":"a0z7e00000BDJmcAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsVAAU","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6FAAU"]}' + string: '{"order_ids":["8016s000001FXxpAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2707,12 +2737,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:42 GMT + - Thu, 09 Nov 2023 19:19:29 GMT Set-Cookie: - - BrowserId=brNYuDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:42 + - BrowserId=57Dh6X80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2732,27 +2762,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHniIAAS"},"Id":"0037e00001jHniIAAS","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"create_new_stripe_coupon@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:25.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:25.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:25.000+0000","LastViewedDate":"2023-08-01T18:58:25.000+0000","LastReferencedDate":"2023-08-01T18:58:25.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHniIAAS","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeulxAAB"},"Id":"0067e00000NeulxAAB","IsDeleted":false,"AccountId":"0017e00001iZwjPAAS","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:26.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T18:58:24.000+0000","LastReferencedDate":"2023-08-01T18:58:24.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJmcAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS"},"Id":"0017e00001iZwjPAAS","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwjPAAS","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:22.000+0000","LastViewedDate":"2023-08-01T18:58:22.000+0000","LastReferencedDate":"2023-08-01T18:58:22.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":["0017e00001iZwjPAAS"],"Opportunities":["0067e00000NeulxAAB"],"Contacts":["0037e00001jHniIAAS"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHniIAAS","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":"0067e00000NeulxAAB","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T18:58:37.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY992AAD"},"Id":"0036s00000WY992AAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"create_new_stripe_coupon@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:18.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:18.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:18.000+0000","LastViewedDate":"2023-11-09T19:19:18.000+0000","LastReferencedDate":"2023-11-09T19:19:18.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY992AAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV"},"Id":"0066s00000CfE1JAAV","IsDeleted":false,"AccountId":"0016s00000fzBdqAAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:18.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:18.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:18.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:19:18.000+0000","LastReferencedDate":"2023-11-09T19:19:18.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DsVAAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE"},"Id":"0016s00000fzBdqAAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBdqAAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:17.000+0000","LastViewedDate":"2023-11-09T19:19:17.000+0000","LastReferencedDate":"2023-11-09T19:19:17.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":["0016s00000fzBdqAAE"],"Opportunities":["0066s00000CfE1JAAV"],"Contacts":["0036s00000WY992AAD"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY992AAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1JAAV","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:19:25.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwjPAAS","LastReferencedDate":"2023-08-01T18:58:37.000+0000","LastViewedDate":"2023-08-01T18:58:37.000+0000","SystemModstamp":"2023-08-01T18:58:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:37.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:26.000+0000","Name":"Q-00879","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJmcAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmcAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK"},"Id":"01t7e000009AnPhAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:58:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:23.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBdqAAE","LastReferencedDate":"2023-11-09T19:19:25.000+0000","LastViewedDate":"2023-11-09T19:19:25.000+0000","SystemModstamp":"2023-11-09T19:19:26.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:26.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:18.000+0000","Name":"Q-00196","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DsVAAU","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsVAAU","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ"},"Id":"01t6s000004g3qPAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:17.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/01u7e00000Isi6HAAR"},"Id":"01u7e00000Isi6HAAR","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPhAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T18:58:23.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58: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/a0v7e000008xWgBAAU"},"Id":"a0v7e000008xWgBAAU","IsDeleted":false,"Name":"QL-0001740","CreatedDate":"2023-08-01T18:58:34.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:34.000+0000","SBQQ__Quote__c":"a0z7e00000BDJmcAAH","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":"01u7e00000Isi6HAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPhAAK","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-01","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-01 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":["01t7e000009AnPhAAK"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWgBAAU","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":"0000000963","SystemModstamp":"2023-08-01T18:58:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:40.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:38.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6HAAR","OrderId":"8017e000000nQ6FAAU","IsDeleted":false,"Product2Id":"01t7e000009AnPhAAK","Id":"8027e000001bPi4AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPi4AAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NeulxAAB"],"Accounts":["0017e00001iZwjPAAS"],"OrderItems":["8027e000001bPi4AAE"],"Quotes":["a0z7e00000BDJmcAAH"],"Opportunity":{"Id":"0067e00000NeulxAAB","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeulxAAB","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":"a0z7e00000BDJmcAAH","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/v59.0/sobjects/PricebookEntry/01u6s000006MyR1AAK"},"Id":"01u6s000006MyR1AAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qPAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:17.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcXAAQ"},"Id":"a0v6s000000tlcXAAQ","IsDeleted":false,"Name":"QL-0001677","CreatedDate":"2023-11-09T19:19:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:23.000+0000","SBQQ__Quote__c":"a0z6s0000016DsVAAU","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":"01u6s000006MyR1AAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qPAAQ","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-11-09","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-11-09 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":["01t6s000004g3qPAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlcXAAQ","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":"0000000496","SystemModstamp":"2023-11-09T19:19:29.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:29.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:27.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyR1AAK","OrderId":"8016s000001FXxpAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qPAAQ","Id":"8026s0000014MvEAAU","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvEAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1JAAV"],"Accounts":["0016s00000fzBdqAAE"],"OrderItems":["8026s0000014MvEAAU"],"Quotes":["a0z6s0000016DsVAAU"],"Opportunity":{"Id":"0066s00000CfE1JAAV","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1JAAV","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":"a0z6s0000016DsVAAU","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T18:58:41.000+0000","LastViewedDate":"2023-08-01T18:58:41.000+0000","SystemModstamp":"2023-08-01T18:58:40.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:40.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:38.000+0000","TotalAmount":1440.00,"OrderNumber":"00000970","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T18:58:40.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000NeulxAAB","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwjPAAS","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6FAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:19:29.000+0000","LastViewedDate":"2023-11-09T19:19:29.000+0000","SystemModstamp":"2023-11-09T19:19:29.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:29.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:27.000+0000","TotalAmount":1440.00,"OrderNumber":"00000267","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:19:28.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1JAAV","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBdqAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXxpAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXxpAAG","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 @@ -2769,10 +2799,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6FAAU%27%0A + uri: https://connect-saas-89822-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%278016s000001FXxpAAG%27%0A body: encoding: US-ASCII string: '' @@ -2791,12 +2821,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:43 GMT + - Thu, 09 Nov 2023 19:19:30 GMT Set-Cookie: - - BrowserId=b52ROjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:43 + - BrowserId=6G173X80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2809,7 +2839,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7105/5000000 + - api-usage=88/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2818,11 +2848,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU"},"Type":"New","OpportunityId":"0067e00000NeulxAAB","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeulxAAB"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG"},"Type":"New","OpportunityId":"0066s00000CfE1JAAV","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1JAAV"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6FAAU%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXxpAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2841,12 +2871,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:43 GMT + - Thu, 09 Nov 2023 19:19:31 GMT Set-Cookie: - - BrowserId=b9W4SzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:43 + - BrowserId=6IEq7H80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2859,7 +2889,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7095/5000000 + - api-usage=109/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2868,14 +2898,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU"},"Id":"8017e000000nQ6FAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG"},"Id":"8016s000001FXxpAAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZwjPAAS&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZwjPAAS + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBdqAAE&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBdqAAE headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2884,13 +2914,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - d7d3d7db-180a-448b-8576-d2bbb6c6bcfe + - 5ceaeef4-b983-4097-b876-06b4137dea99 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2905,37 +2935,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:44 GMT + - Thu, 09 Nov 2023 19:19:31 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - d7d3d7db-180a-448b-8576-d2bbb6c6bcfe + - 5ceaeef4-b983-4097-b876-06b4137dea99 Original-Request: - - req_fJiT8o90VSAfzi + - req_RBzbHMog6QBZYa Request-Id: - - req_fJiT8o90VSAfzi + - req_RBzbHMog6QBZYa 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: @@ -2944,11 +2981,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON82SEPiltIQ5N", + "id": "cus_OyaxDUcjthheAX", "object": "customer", "address": null, "balance": 0, - "created": 1690916324, + "created": 1699557571, "currency": null, "default_currency": null, "default_source": null, @@ -2956,7 +2993,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "631D4CC6", + "invoice_prefix": "29FAD809", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -2965,10 +3002,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwjPAAS", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwjPAAS" + "salesforce_account_id": "0016s00000fzBdqAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBdqAAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -2976,13 +3013,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBdqAAE body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON82SEPiltIQ5N"}' + string: '{"Stripe_ID__c":"cus_OyaxDUcjthheAX"}' headers: User-Agent: - Faraday v2.4.0 @@ -3000,12 +3037,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:44 GMT + - Thu, 09 Nov 2023 19:19:31 GMT Set-Cookie: - - BrowserId=cEYtdjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:44 + - BrowserId=6M8i7H80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3020,17 +3057,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7096/5000000 + - api-usage=113/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnPhAAK&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnPhAAK + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qPAAQ&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qPAAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3039,15 +3076,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fJiT8o90VSAfzi","request_duration_ms":299}}' + - '{"last_request_metrics":{"request_id":"req_RBzbHMog6QBZYa","request_duration_ms":356}}' Idempotency-Key: - - 4986b59c-db44-4ccd-a459-474e2e5392f4 + - 1ccc11b5-4d65-46e7-8e61-3ccd85c77882 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3062,37 +3099,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:45 GMT + - Thu, 09 Nov 2023 19:19:32 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 4986b59c-db44-4ccd-a459-474e2e5392f4 + - 1ccc11b5-4d65-46e7-8e61-3ccd85c77882 Original-Request: - - req_fKibIUNBE7P6z0 + - req_QsVlRveUEDmg3F Request-Id: - - req_fKibIUNBE7P6z0 + - req_QsVlRveUEDmg3F 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: @@ -3101,39 +3145,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON82K2601Nkmw2", + "id": "prod_OyaxUU6u1SRw9K", "object": "product", "active": true, "attributes": [], - "created": 1690916325, + "created": 1699557571, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnPhAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnPhAAK" + "salesforce_product2_id": "01t6s000004g3qPAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qPAAQ" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-89", + "sku": "rest-product2--2023-11-09-000000-utc-4", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916325, + "updated": 1699557571, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qPAAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON82K2601Nkmw2"}' + string: '{"Stripe_ID__c":"prod_OyaxUU6u1SRw9K"}' headers: User-Agent: - Faraday v2.4.0 @@ -3151,12 +3196,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:45 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=cPUK1TCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:45 + - BrowserId=6RzOL380Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3171,14 +3216,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7097/5000000 + - api-usage=98/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPhAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qPAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3197,12 +3242,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:46 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=cYswLzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:46 + - BrowserId=6UTvoX80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3215,7 +3260,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7093/5000000 + - api-usage=104/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3225,10 +3270,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPhAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qPAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3247,12 +3292,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:47 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=ccPMtzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:47 + - BrowserId=6VLSUn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3265,7 +3310,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7098/5000000 + - api-usage=105/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3275,10 +3320,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qPAAQ body: encoding: US-ASCII string: '' @@ -3297,12 +3342,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:47 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=cfiYrzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:47 + - BrowserId=6WBANn80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3315,9 +3360,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7097/5000000 + - api-usage=108/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:46 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3326,15 +3371,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK"},"Id":"01t7e000009AnPhAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:58:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:46.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:46.000+0000","Family":null,"IsSerialized":false,"ExternalDataSourceId":null,"ExternalId":null,"DisplayUrl":null,"QuantityUnitOfMeasure":null,"IsDeleted":false,"IsArchived":false,"LastViewedDate":null,"LastReferencedDate":null,"StockKeepingUnit":null,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t6s000004g3qPAAQ"},"Id":"01t6s000004g3qPAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:32.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_ON82K2601Nkmw2","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON82K2601Nkmw2"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_OyaxUU6u1SRw9K","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OyaxUU6u1SRw9K"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPi4AAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvEAAU%27%0A body: encoding: US-ASCII string: '' @@ -3353,12 +3398,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:47 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=cjUsdTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:47 + - BrowserId=6X-HKH80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3371,7 +3416,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7106/5000000 + - api-usage=111/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3381,10 +3426,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPi4AAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvEAAU%27%0A body: encoding: US-ASCII string: '' @@ -3403,12 +3448,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:48 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=cmwbFDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:48 + - BrowserId=6Y1DRn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3421,7 +3466,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7098/5000000 + - api-usage=106/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3431,10 +3476,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPhAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qPAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3453,12 +3498,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:48 GMT + - Thu, 09 Nov 2023 19:19:32 GMT Set-Cookie: - - BrowserId=cqVTFzCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:48 + - BrowserId=6Z0hTH80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3471,7 +3516,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7096/5000000 + - api-usage=112/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3481,13 +3526,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON82K2601Nkmw2&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6HAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6HAAR + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OyaxUU6u1SRw9K&metadata[salesforce_pricebook_entry_id]=01u6s000006MyR1AAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyR1AAK headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3495,16 +3540,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fKibIUNBE7P6z0","request_duration_ms":241}}' Idempotency-Key: - - 943e50ea-cb33-4151-ada3-3adf005a387c + - 5224545c-1a15-4ade-bd26-63ddcc543689 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3519,37 +3562,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:48 GMT + - Thu, 09 Nov 2023 19:19:33 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 943e50ea-cb33-4151-ada3-3adf005a387c + - 5224545c-1a15-4ade-bd26-63ddcc543689 Original-Request: - - req_s1BkRc5BXUxfnc + - req_A7YuL2uJ7KGGpw Request-Id: - - req_s1BkRc5BXUxfnc + - req_A7YuL2uJ7KGGpw 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: @@ -3558,21 +3608,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNmOIsgf92XbAOC8yACG5g", + "id": "price_1OAdlJIsgf92XbAOF6CtCFZn", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916328, + "created": 1699557573, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6HAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6HAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyR1AAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyR1AAK" }, "nickname": null, - "product": "prod_ON82K2601Nkmw2", + "product": "prod_OyaxUU6u1SRw9K", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3587,13 +3637,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6HAAR + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyR1AAK body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNmOIsgf92XbAOC8yACG5g"}' + string: '{"Stripe_ID__c":"price_1OAdlJIsgf92XbAOF6CtCFZn"}' headers: User-Agent: - Faraday v2.4.0 @@ -3611,12 +3661,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:49 GMT + - Thu, 09 Nov 2023 19:19:33 GMT Set-Cookie: - - BrowserId=cwpWgDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:49 + - BrowserId=6dp4fH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3631,14 +3681,64 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7097/5000000 + - api-usage=110/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvEAAU%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:19:33 GMT + Set-Cookie: + - BrowserId=6fYWxX80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19: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=113/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hlEAA"},"Id":"a1N6s00000113hlEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPi4AAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlcXAAQ%27 body: encoding: US-ASCII string: '' @@ -3657,12 +3757,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:49 GMT + - Thu, 09 Nov 2023 19:19:33 GMT Set-Cookie: - - BrowserId=c0hKVTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:49 + - BrowserId=6gmfRn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3675,7 +3775,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7107/5000000 + - api-usage=107/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3684,11 +3784,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPUEAY"},"Id":"a1N7e000002flPUEAY"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5LEAS"},"Id":"a1P6s000001Bk5LEAS"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPUEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hlEAA body: encoding: US-ASCII string: '' @@ -3707,12 +3807,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:50 GMT + - Thu, 09 Nov 2023 19:19:33 GMT Set-Cookie: - - BrowserId=c3zG4DCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:50 + - BrowserId=6haX_n80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3725,9 +3825,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7108/5000000 + - api-usage=109/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:40 GMT + - Thu, 09 Nov 2023 19:19:29 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3736,12 +3836,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPUEAY"},"Id":"a1N7e000002flPUEAY","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0130","CreatedDate":"2023-08-01T18:58:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:40.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"55% - off coupon","Order_Item__c":"8027e000001bPi4AAE","Order__c":null,"Percent_Off__c":55.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsCEAW","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hlEAA"},"Id":"a1N6s00000113hlEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0006","CreatedDate":"2023-11-09T19:19:29.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:29.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:29.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"55% + off coupon","Order_Item__c":"8026s0000014MvEAAU","Order__c":null,"Percent_Off__c":55.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHZEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY body: encoding: US-ASCII string: '' @@ -3760,12 +3860,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:50 GMT + - Thu, 09 Nov 2023 19:19:33 GMT Set-Cookie: - - BrowserId=c7NnwTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:50 + - BrowserId=6iTvB380Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3778,9 +3878,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7094/5000000 + - api-usage=98/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:34 GMT + - Thu, 09 Nov 2023 19:19:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3789,15 +3889,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW"},"Id":"a1R7e000007JEsCEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0111","CreatedDate":"2023-08-01T18:58:34.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:34.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"55% + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY"},"Id":"a1R6s000000uvHZEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0005","CreatedDate":"2023-11-09T19:19:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:23.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"55% off coupon","Percent_Off__c":55.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=55%25+off+coupon&percent_off=55.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPUEAY&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPUEAY + string: name=55%25+off+coupon&percent_off=55.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hlEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hlEAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3806,15 +3906,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_s1BkRc5BXUxfnc","request_duration_ms":246}}' + - '{"last_request_metrics":{"request_id":"req_QsVlRveUEDmg3F","request_duration_ms":264}}' Idempotency-Key: - - 5fd082f2-681c-4422-9e86-bf4e1f39f273 + - 9589d17d-0679-4e96-91c6-2620c12eac41 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3829,37 +3929,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:50 GMT + - Thu, 09 Nov 2023 19:19:34 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 5fd082f2-681c-4422-9e86-bf4e1f39f273 + - 9589d17d-0679-4e96-91c6-2620c12eac41 Original-Request: - - req_zYetUXAakdZ0xs + - req_GXQ7RvjPeX6Bnl Request-Id: - - req_zYetUXAakdZ0xs + - req_GXQ7RvjPeX6Bnl 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: @@ -3868,18 +3975,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "nfy0zssE", + "id": "qSILpsPf", "object": "coupon", "amount_off": null, - "created": 1690916330, + "created": 1699557574, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPUEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPUEAY" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hlEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hlEAA" }, "name": "55% off coupon", "percent_off": 55.0, @@ -3887,13 +3994,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPUEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hlEAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"nfy0zssE"}' + string: '{"Stripe_ID__c":"qSILpsPf"}' headers: User-Agent: - Faraday v2.4.0 @@ -3911,12 +4018,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:51 GMT + - Thu, 09 Nov 2023 19:19:34 GMT Set-Cookie: - - BrowserId=dB3CBzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:51 + - BrowserId=6mKUvX80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3931,14 +4038,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7088/5000000 + - api-usage=99/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -3957,12 +4064,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:51 GMT + - Thu, 09 Nov 2023 19:19:34 GMT Set-Cookie: - - BrowserId=dIhrKDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:51 + - BrowserId=6ncGsX80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3975,11 +4082,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7095/5000000 + - api-usage=111/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4096,7 +4203,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4107,14 +4214,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4282,7 +4387,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 @@ -4298,7 +4404,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4316,9 +4424,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4462,9 +4569,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4586,9 +4693,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 @@ -4633,13 +4749,14 @@ http_interactions: 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":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 + 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":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 @@ -4875,7 +4992,8 @@ http_interactions: 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":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 + 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 @@ -5061,7 +5179,8 @@ http_interactions: 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":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 + 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 @@ -5072,7 +5191,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5144,7 +5268,8 @@ http_interactions: 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":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 + 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 @@ -5190,7 +5315,8 @@ http_interactions: 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":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 + 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 @@ -5250,7 +5376,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5275,7 +5401,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5331,13 +5468,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"nfy0zssE"}' + string: '{"Stripe_ID__c":"qSILpsPf"}' headers: User-Agent: - Faraday v2.4.0 @@ -5355,12 +5492,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:52 GMT + - Thu, 09 Nov 2023 19:19:34 GMT Set-Cookie: - - BrowserId=dRmHrDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:52 + - BrowserId=6tYWqX80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5375,14 +5512,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7092/5000000 + - api-usage=99/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5401,12 +5538,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:53 GMT + - Thu, 09 Nov 2023 19:19:35 GMT Set-Cookie: - - BrowserId=dVX0OjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:53 + - BrowserId=6uVZGH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5419,11 +5556,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7096/5000000 + - api-usage=107/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5540,7 +5677,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5551,14 +5688,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5726,7 +5861,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 @@ -5742,7 +5878,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -5760,9 +5898,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -5906,9 +6043,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6030,9 +6167,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 @@ -6077,13 +6223,14 @@ http_interactions: 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":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 + 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":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 @@ -6319,7 +6466,8 @@ http_interactions: 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":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 + 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 @@ -6505,7 +6653,8 @@ http_interactions: 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":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 + 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 @@ -6516,7 +6665,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6588,7 +6742,8 @@ http_interactions: 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":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 + 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 @@ -6634,7 +6789,8 @@ http_interactions: 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":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 + 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 @@ -6694,7 +6850,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6719,7 +6875,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -6775,30 +6942,18 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNmOIsgf92XbAOC8yACG5g + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXxpAAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_zYetUXAakdZ0xs","request_duration_ms":212}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -6808,75 +6963,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 18:58:53 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_VXBgogBFIvh5Ld - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:19:35 GMT + Set-Cookie: + - BrowserId=60BxvH80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:35 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=108/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNmOIsgf92XbAOC8yACG5g", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916328, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6HAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6HAAR" - }, - "nickname": null, - "product": "prod_ON82K2601Nkmw2", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6FAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DsVAAU%27 body: encoding: US-ASCII string: '' @@ -6895,12 +7014,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:54 GMT + - Thu, 09 Nov 2023 19:19:35 GMT Set-Cookie: - - BrowserId=dfTMTTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:54 + - BrowserId=60x_E380Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6913,7 +7032,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7089/5000000 + - api-usage=110/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6923,10 +7042,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON82SEPiltIQ5N?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OyaxDUcjthheAX?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -6938,13 +7057,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_VXBgogBFIvh5Ld","request_duration_ms":175}}' + - '{"last_request_metrics":{"request_id":"req_A7YuL2uJ7KGGpw","request_duration_ms":251}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6959,31 +7078,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:54 GMT + - Thu, 09 Nov 2023 19:19:36 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_GcBlxBC594zisa + - req_anZYCvYzvLosvw Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6992,11 +7119,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON82SEPiltIQ5N", + "id": "cus_OyaxDUcjthheAX", "object": "customer", "address": null, "balance": 0, - "created": 1690916324, + "created": 1699557571, "currency": null, "default_currency": null, "default_source": null, @@ -7004,7 +7131,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "631D4CC6", + "invoice_prefix": "29FAD809", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7013,10 +7140,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwjPAAS", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwjPAAS" + "salesforce_account_id": "0016s00000fzBdqAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBdqAAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7024,13 +7151,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdlJIsgf92XbAOF6CtCFZn + 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_anZYCvYzvLosvw","request_duration_ms":199}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:19:36 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_EIkLuAn4LZg1eI + 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_1OAdlJIsgf92XbAOF6CtCFZn", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557573, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyR1AAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyR1AAK" + }, + "nickname": null, + "product": "prod_OyaxUU6u1SRw9K", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6FAAU&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6FAAU&start_date=1690848000&customer=cus_ON82SEPiltIQ5N&phases[0][items][0][price]=price_1NaNmOIsgf92XbAOC8yACG5g&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPi4AAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPi4AAE&phases[0][items][0][discounts][0][coupon]=nfy0zssE&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6FAAU&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6FAAU + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXxpAAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxpAAG&start_date=1699488000&customer=cus_OyaxDUcjthheAX&phases[0][items][0][price]=price_1OAdlJIsgf92XbAOF6CtCFZn&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvEAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvEAAU&phases[0][items][0][discounts][0][coupon]=qSILpsPf&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXxpAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxpAAG headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7039,15 +7271,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GcBlxBC594zisa","request_duration_ms":184}}' + - '{"last_request_metrics":{"request_id":"req_GXQ7RvjPeX6Bnl","request_duration_ms":240}}' Idempotency-Key: - - ab1ae5e8-56f2-41f1-abec-e48250a592b1 + - 0ed60e36-7c04-40c4-b7d0-64127f9d8894 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7062,37 +7294,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:55 GMT + - Thu, 09 Nov 2023 19:19:36 GMT Content-Type: - application/json Content-Length: - - '2573' + - '2558' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - ab1ae5e8-56f2-41f1-abec-e48250a592b1 + - 0ed60e36-7c04-40c4-b7d0-64127f9d8894 Original-Request: - - req_0RF7Pzrekcedei + - req_JqHcICptbbz96t Request-Id: - - req_0RF7Pzrekcedei + - req_JqHcICptbbz96t 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: @@ -7101,17 +7341,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNmUIsgf92XbAOGbprEs13", + "id": "sub_sched_1OAdlMIsgf92XbAOx01h41d0", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916334, + "created": 1699557576, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON82SEPiltIQ5N", + "customer": "cus_OyaxDUcjthheAX", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7130,8 +7370,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6FAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6FAAU" + "salesforce_order_id": "8016s000001FXxpAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxpAAG" }, "phases": [ { @@ -7146,34 +7386,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "nfy0zssE", + "coupon": "qSILpsPf", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi4AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi4AAE" + "salesforce_order_item_id": "8026s0000014MvEAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvEAAU" }, - "plan": "price_1NaNmOIsgf92XbAOC8yACG5g", - "price": "price_1NaNmOIsgf92XbAOC8yACG5g", + "plan": "price_1OAdlJIsgf92XbAOF6CtCFZn", + "price": "price_1OAdlJIsgf92XbAOF6CtCFZn", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6FAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6FAAU" + "salesforce_order_id": "8016s000001FXxpAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxpAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7183,16 +7423,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNmUIsgf92XbAO1gas58OX", + "subscription": "sub_1OAdlMIsgf92XbAOyrdDbH97", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNmUIsgf92XbAOGbprEs13"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdlMIsgf92XbAOx01h41d0"}' headers: User-Agent: - Faraday v2.4.0 @@ -7210,12 +7450,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:55 GMT + - Thu, 09 Nov 2023 19:19:36 GMT Set-Cookie: - - BrowserId=dq1uJjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:55 + - BrowserId=6-_rPn80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7230,18 +7470,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7097/5000000 + - api-usage=112/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6FAAU-8017e000000nQ6FAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXxpAAG-8016s000001FXxpAAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6FAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6FAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNmUIsgf92XbAOGbprEs13","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXxpAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXxpAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdlMIsgf92XbAOx01h41d0","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_JqHcICptbbz96t"}' headers: User-Agent: - Faraday v2.4.0 @@ -7259,12 +7499,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:55 GMT + - Thu, 09 Nov 2023 19:19:37 GMT Set-Cookie: - - BrowserId=dvwCpTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:55 + - BrowserId=7BJnZH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7277,20 +7517,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7096/5000000 + - api-usage=113/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrL2EAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxchEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrL2EAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000KxchEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNmUIsgf92XbAOGbprEs13?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdlMIsgf92XbAOx01h41d0?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7302,13 +7542,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0RF7Pzrekcedei","request_duration_ms":667}}' + - '{"last_request_metrics":{"request_id":"req_EIkLuAn4LZg1eI","request_duration_ms":184}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7323,31 +7563,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:56 GMT + - Thu, 09 Nov 2023 19:19:37 GMT Content-Type: - application/json Content-Length: - - '3653' + - '3633' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_Un3Yh8jQ0aDMGI + - req_1sYTZIY7HDjcET Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7356,17 +7604,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNmUIsgf92XbAOGbprEs13", + "id": "sub_sched_1OAdlMIsgf92XbAOx01h41d0", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916334, + "created": 1699557576, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON82SEPiltIQ5N", + "customer": "cus_OyaxDUcjthheAX", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7385,8 +7633,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6FAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6FAAU" + "salesforce_order_id": "8016s000001FXxpAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxpAAG" }, "phases": [ { @@ -7401,38 +7649,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "nfy0zssE", + "coupon": "qSILpsPf", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi4AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi4AAE" + "salesforce_order_item_id": "8026s0000014MvEAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvEAAU" }, - "plan": "price_1NaNmOIsgf92XbAOC8yACG5g", + "plan": "price_1OAdlJIsgf92XbAOF6CtCFZn", "price": { - "id": "price_1NaNmOIsgf92XbAOC8yACG5g", + "id": "price_1OAdlJIsgf92XbAOF6CtCFZn", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916328, + "created": 1699557573, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6HAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6HAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyR1AAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyR1AAK" }, "nickname": null, - "product": "prod_ON82K2601Nkmw2", + "product": "prod_OyaxUU6u1SRw9K", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7452,12 +7700,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6FAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6FAAU" + "salesforce_order_id": "8016s000001FXxpAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxpAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7467,13 +7715,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNmUIsgf92XbAO1gas58OX", + "subscription": "sub_1OAdlMIsgf92XbAOyrdDbH97", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG body: encoding: US-ASCII string: '' @@ -7492,12 +7740,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:56 GMT + - Thu, 09 Nov 2023 19:19:37 GMT Set-Cookie: - - BrowserId=d1wkGDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:56 + - BrowserId=7Ew8h380Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7510,9 +7758,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7097/5000000 + - api-usage=100/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:55 GMT + - Thu, 09 Nov 2023 19:19:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7521,13 +7769,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6FAAU"},"Id":"8017e000000nQ6FAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeulxAAB","EffectiveDate":"2023-08-01","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-01T18:58:40.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000970","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:58:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:55.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:55.000+0000","LastViewedDate":"2023-08-01T18:58:55.000+0000","LastReferencedDate":"2023-08-01T18:58:55.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxpAAG"},"Id":"8016s000001FXxpAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1JAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:28.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000267","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:36.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:36.000+0000","LastViewedDate":"2023-11-09T19:19:36.000+0000","LastReferencedDate":"2023-11-09T19:19:36.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJmcAAH","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_1NaNmUIsgf92XbAOGbprEs13","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NaNmUIsgf92XbAOGbprEs13"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsVAAU","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_1OAdlMIsgf92XbAOx01h41d0","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAdlMIsgf92XbAOx01h41d0"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY body: encoding: UTF-8 string: '{"Name__c":"Special coupon"}' @@ -7548,12 +7796,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:56 GMT + - Thu, 09 Nov 2023 19:19:37 GMT Set-Cookie: - - BrowserId=d5RLszCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:56 + - BrowserId=7Fzd9n80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7568,14 +7816,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7109/5000000 + - api-usage=105/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -7594,12 +7842,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:57 GMT + - Thu, 09 Nov 2023 19:19:37 GMT Set-Cookie: - - BrowserId=d85ukDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:57 + - BrowserId=7G8GNH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7612,7 +7860,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7110/5000000 + - api-usage=111/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7621,14 +7869,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwjPAAS"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBdqAAE"}' headers: User-Agent: - Faraday v2.4.0 @@ -7646,12 +7894,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:57 GMT + - Thu, 09 Nov 2023 19:19:37 GMT Set-Cookie: - - BrowserId=eAYgDjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:57 + - BrowserId=7H36kn80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7664,9 +7912,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7099/5000000 + - api-usage=114/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000Neuh5AAB" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1OAAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -7675,11 +7923,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000Neuh5AAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1OAAV","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"create_new_stripe_coupon_2@example.com"}' @@ -7700,12 +7948,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:58 GMT + - Thu, 09 Nov 2023 19:19:38 GMT Set-Cookie: - - BrowserId=eFC9mzCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:58 + - BrowserId=7KZqRX80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7718,9 +7966,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7098/5000000 + - api-usage=108/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHoGIAA0" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY997AAD" Content-Type: - application/json;charset=UTF-8 Vary: @@ -7729,14 +7977,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHoGIAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY997AAD","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000Neuh5AAB","SBQQ__PrimaryContact__c":"0037e00001jHoGIAA0","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1OAAV","SBQQ__PrimaryContact__c":"0036s00000WY997AAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -7754,12 +8002,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:58 GMT + - Thu, 09 Nov 2023 19:19:38 GMT Set-Cookie: - - BrowserId=eJtavDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:58 + - BrowserId=7MZOWH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7772,9 +8020,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7090/5000000 + - api-usage=109/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -7783,11 +8031,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJmmAAH","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DsfAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -7806,12 +8054,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:59 GMT + - Thu, 09 Nov 2023 19:19:38 GMT Set-Cookie: - - BrowserId=eRs5lzCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:59 + - BrowserId=7ScL_X80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7824,7 +8072,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7093/5000000 + - api-usage=110/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7833,11 +8081,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJmmAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DsfAAE body: encoding: US-ASCII string: '' @@ -7856,12 +8104,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:59 GMT + - Thu, 09 Nov 2023 19:19:38 GMT Set-Cookie: - - BrowserId=eVOH2TCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:59 + - BrowserId=7TVjun80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7881,17 +8129,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"Id\":\"a0z7e00000BDJmmAAH\",\"Name\":\"Q-00880\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"Id\":\"a0z6s0000016DsfAAE\",\"Name\":\"Q-00197\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000Neuh5AAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"Id\":\"0017e00001iZwjPAAS\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000Neuh5AAB\"},\"Id\":\"0067e00000Neuh5AAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1OAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"Id\":\"0066s00000CfE1OAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnPhAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qPAAQ body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -7909,12 +8157,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:00 GMT + - Thu, 09 Nov 2023 19:19:39 GMT Set-Cookie: - - BrowserId=edWI_zCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:00 + - BrowserId=7aLL-X80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7932,23 +8180,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyR1AAK\"},\"Product2Id\":\"01t6s000004g3qPAAQ\",\"Id\":\"01u6s000006MyR1AAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"Id\":\"a0z7e00000BDJmmAAH\",\"Name\":\"Q-00880\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"Id\":\"a0z6s0000016DsfAAE\",\"Name\":\"Q-00197\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000Neuh5AAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"Id\":\"0017e00001iZwjPAAS\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000Neuh5AAB\"},\"Id\":\"0067e00000Neuh5AAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\"},\"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/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1OAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"Id\":\"0066s00000CfE1OAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyR1AAK\"},\"Product2Id\":\"01t6s000004g3qPAAQ\",\"Id\":\"01u6s000006MyR1AAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -7966,12 +8214,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:02 GMT + - Thu, 09 Nov 2023 19:19:40 GMT Set-Cookie: - - BrowserId=eqgbDTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:02 + - BrowserId=7eFaoH80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7989,30 +8237,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuh5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000Neuh5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00880\",\"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\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuh5AAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"Id\":\"a0z6s0000016DsfAAE\",\"Name\":\"Q-00197\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1OAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"Id\":\"0066s00000CfE1OAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsfAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001678\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuh5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000Neuh5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00880\",\"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\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuh5AAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK\"},\"Id\":\"01t7e000009AnPhAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6HAAR\"},\"Product2Id\":\"01t7e000009AnPhAAK\",\"Id\":\"01u7e00000Isi6HAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"Id\":\"a0z6s0000016DsfAAE\",\"Name\":\"Q-00197\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1OAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"Id\":\"0066s00000CfE1OAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsfAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001678\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -8030,12 +8276,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:04 GMT + - Thu, 09 Nov 2023 19:19:41 GMT Set-Cookie: - - BrowserId=fBia2DCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:04 + - BrowserId=7pARR380Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8053,26 +8299,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"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/0067e00000Neuh5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000Neuh5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00880\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuh5AAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmmAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"Id\":\"a0z6s0000016DsfAAE\",\"Name\":\"Q-00197\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1OAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"Id\":\"0066s00000CfE1OAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsfAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001679\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"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/0067e00000Neuh5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000Neuh5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00880\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuh5AAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmmAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"Id\":\"a0z6s0000016DsfAAE\",\"Name\":\"Q-00197\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1OAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"Id\":\"0016s00000fzBdqAAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"Id\":\"0066s00000CfE1OAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\"},\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsfAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyR1AAK\",\"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-0001679\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"Id\":\"01t6s000004g3qPAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -8090,12 +8338,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:06 GMT + - Thu, 09 Nov 2023 19:19:42 GMT Set-Cookie: - - BrowserId=fZBHYTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:06 + - BrowserId=70r8-380Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8115,17 +8363,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH\"},\"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/0067e00000Neuh5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmmAAH\",\"AccountId\":\"0017e00001iZwjPAAS\",\"Id\":\"0067e00000Neuh5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwjPAAS\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00880\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwjPAAS\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuh5AAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmmAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmmAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWZyAAM\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmmAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6HAAR\",\"Id\":\"a0v7e000008xWZyAAM\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPhAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsfAAE\",\"AccountId\":\"0016s00000fzBdqAAE\",\"Id\":\"0066s00000CfE1OAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBdqAAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00197\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBdqAAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1OAAV\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DsfAAE\",\"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\":\"a0z6s0000016DsfAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcmAAA\"},\"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-11-09 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\":\"a0z6s0000016DsfAAE\",\"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\":\"a0v6s000000tlcmAAA\",\"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-0001679\",\"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\":\"01u6s000006MyR1AAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qPAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qPAAQ\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE body: encoding: US-ASCII string: '' @@ -8144,12 +8393,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:07 GMT + - Thu, 09 Nov 2023 19:19:42 GMT Set-Cookie: - - BrowserId=ffBBtTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:07 + - BrowserId=73xGpn80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8162,9 +8411,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7125/5000000 + - api-usage=114/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:59:07 GMT + - Thu, 09 Nov 2023 19:19:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8173,15 +8422,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH"},"Id":"a0z7e00000BDJmmAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00880","CreatedDate":"2023-08-01T18:58:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:07.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:59:07.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T18:59:07.000+0000","LastReferencedDate":"2023-08-01T18:59:07.000+0000","SBQQ__Account__c":"0017e00001iZwjPAAS","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T18:59: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":"0067e00000Neuh5AAB","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHoGIAA0","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE"},"Id":"a0z6s0000016DsfAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00197","CreatedDate":"2023-11-09T19:19:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:42.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:19:42.000+0000","LastReferencedDate":"2023-11-09T19:19:42.000+0000","SBQQ__Account__c":"0016s00000fzBdqAAE","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:19:42.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":"0066s00000CfE1OAAV","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY997AAD","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJmmAAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DsfAAE%27 body: encoding: US-ASCII string: '' @@ -8200,12 +8449,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:08 GMT + - Thu, 09 Nov 2023 19:19:42 GMT Set-Cookie: - - BrowserId=fjAJITCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:08 + - BrowserId=74-nt380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8218,7 +8467,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7112/5000000 + - api-usage=106/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8227,11 +8476,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWZyAAM"},"Id":"a0v7e000008xWZyAAM"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcmAAA"},"Id":"a0v6s000000tlcmAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWZyAAM + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcmAAA body: encoding: US-ASCII string: '' @@ -8250,12 +8499,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:08 GMT + - Thu, 09 Nov 2023 19:19:43 GMT Set-Cookie: - - BrowserId=fmpS6TCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:08 + - BrowserId=76KTWX80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8268,9 +8517,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7106/5000000 + - api-usage=115/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:59:07 GMT + - Thu, 09 Nov 2023 19:19:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8279,17 +8528,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWZyAAM"},"Id":"a0v7e000008xWZyAAM","IsDeleted":false,"Name":"QL-0001741","CreatedDate":"2023-08-01T18:59:07.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:07.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:59:07.000+0000","SBQQ__Quote__c":"a0z7e00000BDJmmAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6HAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPhAAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcmAAA"},"Id":"a0v6s000000tlcmAAA","IsDeleted":false,"Name":"QL-0001680","CreatedDate":"2023-11-09T19:19:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:42.000+0000","SBQQ__Quote__c":"a0z6s0000016DsfAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyR1AAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qPAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWZyAAM","Quote_Stripe_Coupon__c":"a1R7e000007JEsCEAW"}' + string: '{"Quote_Line__c":"a0v6s000000tlcmAAA","Quote_Stripe_Coupon__c":"a1R6s000000uvHZEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -8307,12 +8556,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:59:08 GMT + - Thu, 09 Nov 2023 19:19:43 GMT Set-Cookie: - - BrowserId=fqoboDCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:08 + - BrowserId=77quxX80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8325,9 +8574,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7116/5000000 + - api-usage=104/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVvmEAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5QEAS" Content-Type: - application/json;charset=UTF-8 Vary: @@ -8336,11 +8585,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVvmEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5QEAS","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -8361,12 +8610,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:59:09 GMT + - Thu, 09 Nov 2023 19:19:43 GMT Set-Cookie: - - BrowserId=fulumzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:09 + - BrowserId=79JWBX80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8381,14 +8630,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7117/5000000 + - api-usage=114/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -8407,12 +8656,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:11 GMT + - Thu, 09 Nov 2023 19:19:44 GMT Set-Cookie: - - BrowserId=f_oa3TCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:11 + - BrowserId=8MFxGH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8425,7 +8674,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7126/5000000 + - api-usage=116/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8434,12 +8683,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6OAAU"},"Id":"8017e000000nQ6OAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuh5AAB","EffectiveDate":"2023-08-01","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":"00000971","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:59:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:10.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:59:10.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":"a0z7e00000BDJmmAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXxuAAG"},"Id":"8016s000001FXxuAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1OAAV","EffectiveDate":"2023-11-09","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":"00000268","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:44.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:44.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:44.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":"a0z6s0000016DsfAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -8460,12 +8709,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:59:11 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Set-Cookie: - - BrowserId=gDFXtjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:11 + - BrowserId=8NFPbX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8480,14 +8729,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7113/5000000 + - api-usage=112/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG body: encoding: US-ASCII string: '' @@ -8506,12 +8755,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:12 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Set-Cookie: - - BrowserId=gMDtAzCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:12 + - BrowserId=8S_DKX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8524,9 +8773,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7099/5000000 + - api-usage=113/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:59:11 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8535,13 +8784,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU"},"Id":"8017e000000nQ6OAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuh5AAB","EffectiveDate":"2023-08-01","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-01T18:59:11.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000971","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:59:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:59:11.000+0000","LastViewedDate":"2023-08-01T18:59:11.000+0000","LastReferencedDate":"2023-08-01T18:59:11.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":"a0z7e00000BDJmmAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG"},"Id":"8016s000001FXxuAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1OAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:45.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000268","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:44.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:45.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:45.000+0000","LastViewedDate":"2023-11-09T19:19:45.000+0000","LastReferencedDate":"2023-11-09T19:19:45.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z6s0000016DsfAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG body: encoding: US-ASCII string: '' @@ -8560,12 +8808,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:12 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Set-Cookie: - - BrowserId=gPy-EjCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:12 + - BrowserId=8T8En380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8578,9 +8826,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7107/5000000 + - api-usage=107/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:59:11 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8589,16 +8837,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU"},"Id":"8017e000000nQ6OAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuh5AAB","EffectiveDate":"2023-08-01","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-01T18:59:11.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000971","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:59:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:59:11.000+0000","LastViewedDate":"2023-08-01T18:59:12.000+0000","LastReferencedDate":"2023-08-01T18:59:12.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG"},"Id":"8016s000001FXxuAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1OAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:45.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000268","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:44.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:45.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:45.000+0000","LastViewedDate":"2023-11-09T19:19:45.000+0000","LastReferencedDate":"2023-11-09T19:19:45.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJmmAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsfAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6OAAU"]}' + string: '{"order_ids":["8016s000001FXxuAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -8616,12 +8864,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:13 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Set-Cookie: - - BrowserId=gT4zgzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:13 + - BrowserId=8VY2jX80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8641,27 +8889,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHoGIAA0"},"Id":"0037e00001jHoGIAA0","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"create_new_stripe_coupon_2@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:58.000+0000","LastViewedDate":"2023-08-01T18:58:58.000+0000","LastReferencedDate":"2023-08-01T18:58:58.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHoGIAA0","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuh5AAB"},"Id":"0067e00000Neuh5AAB","IsDeleted":false,"AccountId":"0017e00001iZwjPAAS","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:59.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:59.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T18:58:57.000+0000","LastReferencedDate":"2023-08-01T18:58:57.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJmmAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwjPAAS"},"Id":"0017e00001iZwjPAAS","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwjPAAS","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:44.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:44.000+0000","LastViewedDate":"2023-08-01T18:58:44.000+0000","LastReferencedDate":"2023-08-01T18:58:44.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_ON82SEPiltIQ5N","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ON82SEPiltIQ5N"},{"Accounts":["0017e00001iZwjPAAS"],"Opportunities":["0067e00000Neuh5AAB"],"Contacts":["0037e00001jHoGIAA0"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHoGIAA0","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":"0067e00000Neuh5AAB","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T18:59:09.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY997AAD"},"Id":"0036s00000WY997AAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"create_new_stripe_coupon_2@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:38.000+0000","LastViewedDate":"2023-11-09T19:19:38.000+0000","LastReferencedDate":"2023-11-09T19:19:38.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY997AAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV"},"Id":"0066s00000CfE1OAAV","IsDeleted":false,"AccountId":"0016s00000fzBdqAAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:38.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:38.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:19:37.000+0000","LastReferencedDate":"2023-11-09T19:19:37.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DsfAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBdqAAE"},"Id":"0016s00000fzBdqAAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBdqAAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:31.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:31.000+0000","LastViewedDate":"2023-11-09T19:19:31.000+0000","LastReferencedDate":"2023-11-09T19:19:31.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_OyaxDUcjthheAX","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_OyaxDUcjthheAX"},{"Accounts":["0016s00000fzBdqAAE"],"Opportunities":["0066s00000CfE1OAAV"],"Contacts":["0036s00000WY997AAD"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY997AAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1OAAV","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:19:43.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwjPAAS","LastReferencedDate":"2023-08-01T18:59:09.000+0000","LastViewedDate":"2023-08-01T18:59:09.000+0000","SystemModstamp":"2023-08-01T18:59:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:09.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:58:58.000+0000","Name":"Q-00880","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJmmAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmmAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPhAAK"},"Id":"01t7e000009AnPhAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:58:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:46.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:49.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-08-01T18:58:47.000+0000","LastReferencedDate":"2023-08-01T18:58:47.000+0000","SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBdqAAE","LastReferencedDate":"2023-11-09T19:19:43.000+0000","LastViewedDate":"2023-11-09T19:19:43.000+0000","SystemModstamp":"2023-11-09T19:19:43.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:43.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:38.000+0000","Name":"Q-00197","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DsfAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsfAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qPAAQ"},"Id":"01t6s000004g3qPAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:33.000+0000","IsDeleted":false,"IsArchived":false,"LastViewedDate":"2023-11-09T19:19:32.000+0000","LastReferencedDate":"2023-11-09T19:19:32.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_ON82K2601Nkmw2","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON82K2601Nkmw2"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6HAAR"},"Id":"01u7e00000Isi6HAAR","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPhAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T18:58:23.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:49.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:49.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1NaNmOIsgf92XbAOC8yACG5g","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1NaNmOIsgf92XbAOC8yACG5g"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWZyAAM"},"Id":"a0v7e000008xWZyAAM","IsDeleted":false,"Name":"QL-0001741","CreatedDate":"2023-08-01T18:59:07.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:07.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:59:07.000+0000","SBQQ__Quote__c":"a0z7e00000BDJmmAAH","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":"01u7e00000Isi6HAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPhAAK","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-01","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-01 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":["01t7e000009AnPhAAK"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWZyAAM","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":"0000000964","SystemModstamp":"2023-08-01T18:59:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:11.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:59:10.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6HAAR","OrderId":"8017e000000nQ6OAAU","IsDeleted":false,"Product2Id":"01t7e000009AnPhAAK","Id":"8027e000001bPi9AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPi9AAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000Neuh5AAB"],"Accounts":["0017e00001iZwjPAAS"],"OrderItems":["8027e000001bPi9AAE"],"Quotes":["a0z7e00000BDJmmAAH"],"Opportunity":{"Id":"0067e00000Neuh5AAB","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuh5AAB","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":"a0z7e00000BDJmmAAH","SBQQ__PriceCalcStatus__c":"Not + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_ID__c":"prod_OyaxUU6u1SRw9K","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OyaxUU6u1SRw9K"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyR1AAK"},"Id":"01u6s000006MyR1AAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qPAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:19:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:33.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:33.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_ID__c":"price_1OAdlJIsgf92XbAOF6CtCFZn","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/price_1OAdlJIsgf92XbAOF6CtCFZn"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcmAAA"},"Id":"a0v6s000000tlcmAAA","IsDeleted":false,"Name":"QL-0001680","CreatedDate":"2023-11-09T19:19:42.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:42.000+0000","SBQQ__Quote__c":"a0z6s0000016DsfAAE","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":"01u6s000006MyR1AAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qPAAQ","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-11-09","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-11-09 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":["01t6s000004g3qPAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlcmAAA","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":"0000000497","SystemModstamp":"2023-11-09T19:19:45.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:45.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:44.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyR1AAK","OrderId":"8016s000001FXxuAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qPAAQ","Id":"8026s0000014MvJAAU","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvJAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1OAAV"],"Accounts":["0016s00000fzBdqAAE"],"OrderItems":["8026s0000014MvJAAU"],"Quotes":["a0z6s0000016DsfAAE"],"Opportunity":{"Id":"0066s00000CfE1OAAV","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1OAAV","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":"a0z6s0000016DsfAAE","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T18:59:12.000+0000","LastViewedDate":"2023-08-01T18:59:12.000+0000","SystemModstamp":"2023-08-01T18:59:11.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:11.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:59:09.000+0000","TotalAmount":1440.00,"OrderNumber":"00000971","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T18:59:11.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000Neuh5AAB","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwjPAAS","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6OAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:19:45.000+0000","LastViewedDate":"2023-11-09T19:19:45.000+0000","SystemModstamp":"2023-11-09T19:19:45.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:45.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:44.000+0000","TotalAmount":1440.00,"OrderNumber":"00000268","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:19:45.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1OAAV","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBdqAAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXxuAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXxuAAG","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 @@ -8678,10 +8926,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6OAAU%27%0A + uri: https://connect-saas-89822-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%278016s000001FXxuAAG%27%0A body: encoding: US-ASCII string: '' @@ -8700,12 +8948,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:15 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Set-Cookie: - - BrowserId=guRpxjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:15 + - BrowserId=8gDOLH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8718,7 +8966,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7119/5000000 + - api-usage=111/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8727,11 +8975,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU"},"Type":"New","OpportunityId":"0067e00000Neuh5AAB","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuh5AAB"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG"},"Type":"New","OpportunityId":"0066s00000CfE1OAAV","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1OAAV"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6OAAU%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXxuAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -8750,12 +8998,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:16 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Set-Cookie: - - BrowserId=gx-dpzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:16 + - BrowserId=8hSkKH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8768,7 +9016,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7114/5000000 + - api-usage=100/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8777,11 +9025,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU"},"Id":"8017e000000nQ6OAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG"},"Id":"8016s000001FXxuAAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON82SEPiltIQ5N + uri: https://api.stripe.com/v1/customers/cus_OyaxDUcjthheAX body: encoding: US-ASCII string: '' @@ -8793,13 +9041,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Un3Yh8jQ0aDMGI","request_duration_ms":202}}' + - '{"last_request_metrics":{"request_id":"req_1sYTZIY7HDjcET","request_duration_ms":218}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8814,31 +9062,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:16 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Content-Type: - application/json Content-Length: - - '850' + - '845' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_payDXejjVIhp6X + - req_TMQdJMSkH7VKKe Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8847,11 +9103,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON82SEPiltIQ5N", + "id": "cus_OyaxDUcjthheAX", "object": "customer", "address": null, "balance": 0, - "created": 1690916324, + "created": 1699557571, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -8859,7 +9115,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "631D4CC6", + "invoice_prefix": "29FAD809", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -8868,10 +9124,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwjPAAS", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwjPAAS" + "salesforce_account_id": "0016s00000fzBdqAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBdqAAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -8879,10 +9135,10 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/products/prod_ON82K2601Nkmw2 + uri: https://api.stripe.com/v1/products/prod_OyaxUU6u1SRw9K body: encoding: US-ASCII string: '' @@ -8894,13 +9150,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_payDXejjVIhp6X","request_duration_ms":204}}' + - '{"last_request_metrics":{"request_id":"req_TMQdJMSkH7VKKe","request_duration_ms":212}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8915,31 +9171,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:16 GMT + - Thu, 09 Nov 2023 19:19:47 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts%2F%3Aid; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_ZMan3S8vI5Xx4G + - req_KYPgpdD2D9fbZo Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8948,36 +9211,37 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON82K2601Nkmw2", + "id": "prod_OyaxUU6u1SRw9K", "object": "product", "active": true, "attributes": [], - "created": 1690916325, + "created": 1699557571, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnPhAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnPhAAK" + "salesforce_product2_id": "01t6s000004g3qPAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qPAAQ" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-89", + "sku": "rest-product2--2023-11-09-000000-utc-4", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916325, + "updated": 1699557571, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPhAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qPAAQ%27%0A body: encoding: US-ASCII string: '' @@ -8996,12 +9260,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:17 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Set-Cookie: - - BrowserId=g564qTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:17 + - BrowserId=8m0kZn80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9014,7 +9278,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7108/5000000 + - api-usage=115/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9024,10 +9288,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPhAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qPAAQ%27%0A body: encoding: US-ASCII string: '' @@ -9046,12 +9310,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:17 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Set-Cookie: - - BrowserId=g9cuOzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:17 + - BrowserId=8nprVn80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9064,7 +9328,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7113/5000000 + - api-usage=106/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9074,10 +9338,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPi9AAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvJAAU%27%0A body: encoding: US-ASCII string: '' @@ -9096,12 +9360,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:17 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Set-Cookie: - - BrowserId=hBBmOjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:17 + - BrowserId=8opw3n80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9114,7 +9378,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7114/5000000 + - api-usage=110/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9124,10 +9388,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPi9AAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvJAAU%27%0A body: encoding: US-ASCII string: '' @@ -9146,12 +9410,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:18 GMT + - Thu, 09 Nov 2023 19:19:47 GMT Set-Cookie: - - BrowserId=hEoUXTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:18 + - BrowserId=8pW7C380Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9164,7 +9428,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7114/5000000 + - api-usage=116/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9174,10 +9438,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNmOIsgf92XbAOC8yACG5g?expand%5B%5D=tiers + uri: https://api.stripe.com/v1/prices/price_1OAdlJIsgf92XbAOF6CtCFZn?expand%5B%5D=tiers body: encoding: US-ASCII string: '' @@ -9189,13 +9453,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ZMan3S8vI5Xx4G","request_duration_ms":172}}' + - '{"last_request_metrics":{"request_id":"req_KYPgpdD2D9fbZo","request_duration_ms":197}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9210,31 +9474,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:18 GMT + - Thu, 09 Nov 2023 19:19:48 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/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' Request-Id: - - req_IQVJdEC4wkAcy5 + - req_XRNImB0Y1jBAi1 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9243,21 +9514,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNmOIsgf92XbAOC8yACG5g", + "id": "price_1OAdlJIsgf92XbAOF6CtCFZn", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916328, + "created": 1699557573, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6HAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6HAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyR1AAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyR1AAK" }, "nickname": null, - "product": "prod_ON82K2601Nkmw2", + "product": "prod_OyaxUU6u1SRw9K", "recurring": { "aggregate_usage": null, "interval": "month", @@ -9272,10 +9543,10 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPhAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qPAAQ%27%0A body: encoding: US-ASCII string: '' @@ -9294,12 +9565,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:18 GMT + - Thu, 09 Nov 2023 19:19:48 GMT Set-Cookie: - - BrowserId=hKMJoTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:18 + - BrowserId=8sQeEH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9312,7 +9583,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7115/5000000 + - api-usage=117/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9322,10 +9593,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPi9AAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvJAAU%27 body: encoding: US-ASCII string: '' @@ -9344,12 +9615,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:19 GMT + - Thu, 09 Nov 2023 19:19:48 GMT Set-Cookie: - - BrowserId=hN-dSTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:19 + - BrowserId=8tX4e380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9362,7 +9633,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7127/5000000 + - api-usage=108/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9371,11 +9642,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPVEAY"},"Id":"a1N7e000002flPVEAY"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hqEAA"},"Id":"a1N6s00000113hqEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPVEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlcmAAA%27 body: encoding: US-ASCII string: '' @@ -9394,12 +9665,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:19 GMT + - Thu, 09 Nov 2023 19:19:48 GMT Set-Cookie: - - BrowserId=hRnnODCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:19 + - BrowserId=8ubBIX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9412,9 +9683,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7128/5000000 - Last-Modified: - - Tue, 01 Aug 2023 18:59:11 GMT + - api-usage=114/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -9423,12 +9692,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPVEAY"},"Id":"a1N7e000002flPVEAY","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0131","CreatedDate":"2023-08-01T18:59:11.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:11.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:59:11.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Special - coupon","Order_Item__c":"8027e000001bPi9AAE","Order__c":null,"Percent_Off__c":55.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsCEAW","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5QEAS"},"Id":"a1P6s000001Bk5QEAS"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hqEAA body: encoding: US-ASCII string: '' @@ -9447,12 +9715,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:19 GMT + - Thu, 09 Nov 2023 19:19:48 GMT Set-Cookie: - - BrowserId=hVGZnTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:19 + - BrowserId=8vR85n80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9465,9 +9733,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7100/5000000 + - api-usage=118/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:56 GMT + - Thu, 09 Nov 2023 19:19:45 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -9476,32 +9744,20 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW"},"Id":"a1R7e000007JEsCEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0111","CreatedDate":"2023-08-01T18:58:34.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:56.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:56.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Special - coupon","Percent_Off__c":55.0,"Stripe_ID__c":"nfy0zssE","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/nfy0zssE"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hqEAA"},"Id":"a1N6s00000113hqEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0007","CreatedDate":"2023-11-09T19:19:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:45.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Special + coupon","Order_Item__c":"8026s0000014MvJAAU","Order__c":null,"Percent_Off__c":55.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHZEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/nfy0zssE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_IQVJdEC4wkAcy5","request_duration_ms":190}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -9511,34 +9767,106 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 18:59:20 GMT - Content-Type: - - application/json - Content-Length: - - '536' - Connection: + - Thu, 09 Nov 2023 19:19:48 GMT + Set-Cookie: + - BrowserId=8wMi4X80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=117/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:19:37 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY"},"Id":"a1R6s000000uvHZEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0005","CreatedDate":"2023-11-09T19:19:23.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:37.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:37.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Special + coupon","Percent_Off__c":55.0,"Stripe_ID__c":"qSILpsPf","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/qSILpsPf"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/coupons/qSILpsPf + 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_XRNImB0Y1jBAi1","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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:19:48 GMT + Content-Type: + - application/json + Content-Length: + - '531' + 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_ntZml8hhqhmIsb + - req_x3eC4gb99CGA2A Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9547,18 +9875,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "nfy0zssE", + "id": "qSILpsPf", "object": "coupon", "amount_off": null, - "created": 1690916330, + "created": 1699557574, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPUEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPUEAY" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hlEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hlEAA" }, "name": "55% off coupon", "percent_off": 55.0, @@ -9566,13 +9894,13 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://api.stripe.com/v1/coupons/nfy0zssE + uri: https://api.stripe.com/v1/coupons/qSILpsPf body: encoding: UTF-8 - string: metadata[salesforce_quote_stripe_coupon_id]=a1R7e000007JEsCEAW&metadata[salesforce_quote_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1R7e000007JEsCEAW + string: metadata[salesforce_quote_stripe_coupon_id]=a1R6s000000uvHZEAY&metadata[salesforce_quote_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1R6s000000uvHZEAY headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -9581,15 +9909,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ntZml8hhqhmIsb","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_x3eC4gb99CGA2A","request_duration_ms":182}}' Idempotency-Key: - - e88594c4-6d19-47e0-a836-ff42ccab39a5 + - 64c0361c-b3bb-4221-8520-5fc0dff66cf3 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9604,37 +9932,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:20 GMT + - Thu, 09 Nov 2023 19:19:49 GMT Content-Type: - application/json Content-Length: - - '729' + - '719' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - e88594c4-6d19-47e0-a836-ff42ccab39a5 + - 64c0361c-b3bb-4221-8520-5fc0dff66cf3 Original-Request: - - req_0bYZJhcvDC91gy + - req_YifCnqIqs7mDbJ Request-Id: - - req_0bYZJhcvDC91gy + - req_YifCnqIqs7mDbJ 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: @@ -9643,20 +9978,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "nfy0zssE", + "id": "qSILpsPf", "object": "coupon", "amount_off": null, - "created": 1690916330, + "created": 1699557574, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPUEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPUEAY", - "salesforce_quote_stripe_coupon_id": "a1R7e000007JEsCEAW", - "salesforce_quote_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1R7e000007JEsCEAW" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hlEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hlEAA", + "salesforce_quote_stripe_coupon_id": "a1R6s000000uvHZEAY", + "salesforce_quote_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1R6s000000uvHZEAY" }, "name": "55% off coupon", "percent_off": 55.0, @@ -9664,13 +9999,13 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=Special+coupon&percent_off=55.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPVEAY&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPVEAY + string: name=Special+coupon&percent_off=55.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hqEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hqEAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -9679,15 +10014,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0bYZJhcvDC91gy","request_duration_ms":244}}' + - '{"last_request_metrics":{"request_id":"req_JqHcICptbbz96t","request_duration_ms":571}}' Idempotency-Key: - - 0010ee3a-d603-4519-a420-7d0f2583e6e2 + - 60668597-f299-4d26-ae41-40f970ef82e2 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9702,37 +10037,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:20 GMT + - Thu, 09 Nov 2023 19:19:49 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 0010ee3a-d603-4519-a420-7d0f2583e6e2 + - 60668597-f299-4d26-ae41-40f970ef82e2 Original-Request: - - req_pIUlYRzKxIHJD8 + - req_321XMqcmgByzBF Request-Id: - - req_pIUlYRzKxIHJD8 + - req_321XMqcmgByzBF 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: @@ -9741,18 +10083,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pIZTJWec", + "id": "a2JbnH3l", "object": "coupon", "amount_off": null, - "created": 1690916360, + "created": 1699557589, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPVEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPVEAY" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hqEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hqEAA" }, "name": "Special coupon", "percent_off": 55.0, @@ -9760,13 +10102,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPVEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hqEAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"pIZTJWec"}' + string: '{"Stripe_ID__c":"a2JbnH3l"}' headers: User-Agent: - Faraday v2.4.0 @@ -9784,12 +10126,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:59:21 GMT + - Thu, 09 Nov 2023 19:19:49 GMT Set-Cookie: - - BrowserId=hfMI2DCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:21 + - BrowserId=835t5X80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9804,17 +10146,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7101/5000000 + - api-usage=111/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsCEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHZEAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"pIZTJWec"}' + string: '{"Stripe_ID__c":"a2JbnH3l"}' headers: User-Agent: - Faraday v2.4.0 @@ -9832,12 +10174,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:59:21 GMT + - Thu, 09 Nov 2023 19:19:49 GMT Set-Cookie: - - BrowserId=hivMhjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:21 + - BrowserId=84-EdX80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9852,34 +10194,22 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7129/5000000 + - api-usage=118/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNmOIsgf92XbAOC8yACG5g + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXxuAAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pIUlYRzKxIHJD8","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-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -9889,75 +10219,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 18:59:21 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_PfB9nU18KGBUpT - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:19:49 GMT + Set-Cookie: + - BrowserId=86GGUX80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=112/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNmOIsgf92XbAOC8yACG5g", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916328, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6HAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6HAAR" - }, - "nickname": null, - "product": "prod_ON82K2601Nkmw2", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6OAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DsfAAE%27 body: encoding: US-ASCII string: '' @@ -9976,12 +10270,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:21 GMT + - Thu, 09 Nov 2023 19:19:49 GMT Set-Cookie: - - BrowserId=hoDKBTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:21 + - BrowserId=867zfn80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9994,7 +10288,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7102/5000000 + - api-usage=109/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -10004,10 +10298,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON82SEPiltIQ5N?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OyaxDUcjthheAX?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -10019,13 +10313,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_PfB9nU18KGBUpT","request_duration_ms":168}}' + - '{"last_request_metrics":{"request_id":"req_YifCnqIqs7mDbJ","request_duration_ms":257}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10040,31 +10334,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:22 GMT + - Thu, 09 Nov 2023 19:19:50 GMT Content-Type: - application/json Content-Length: - - '850' + - '845' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_O0ccuUGcrgS97X + - req_R1zGUHmy4AfGCv Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10073,11 +10375,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON82SEPiltIQ5N", + "id": "cus_OyaxDUcjthheAX", "object": "customer", "address": null, "balance": 0, - "created": 1690916324, + "created": 1699557571, "currency": "usd", "default_currency": "usd", "default_source": null, @@ -10085,7 +10387,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "631D4CC6", + "invoice_prefix": "29FAD809", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -10094,10 +10396,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwjPAAS", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwjPAAS" + "salesforce_account_id": "0016s00000fzBdqAAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBdqAAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -10105,13 +10407,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdlJIsgf92XbAOF6CtCFZn + 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_R1zGUHmy4AfGCv","request_duration_ms":222}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:19:50 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_WDTzRIzjhIET2d + 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_1OAdlJIsgf92XbAOF6CtCFZn", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557573, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyR1AAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyR1AAK" + }, + "nickname": null, + "product": "prod_OyaxUU6u1SRw9K", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6OAAU&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6OAAU&start_date=1690848000&customer=cus_ON82SEPiltIQ5N&phases[0][items][0][price]=price_1NaNmOIsgf92XbAOC8yACG5g&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPi9AAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPi9AAE&phases[0][items][0][discounts][0][coupon]=pIZTJWec&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6OAAU&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6OAAU + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXxuAAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxuAAG&start_date=1699488000&customer=cus_OyaxDUcjthheAX&phases[0][items][0][price]=price_1OAdlJIsgf92XbAOF6CtCFZn&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvJAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvJAAU&phases[0][items][0][discounts][0][coupon]=a2JbnH3l&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXxuAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxuAAG headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -10120,15 +10527,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_O0ccuUGcrgS97X","request_duration_ms":191}}' + - '{"last_request_metrics":{"request_id":"req_321XMqcmgByzBF","request_duration_ms":229}}' Idempotency-Key: - - '0745439b-f54b-42eb-9b6c-996903c6e884' + - d9f64785-817e-417b-9ca5-9e9983f64692 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10143,37 +10550,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:22 GMT + - Thu, 09 Nov 2023 19:19:50 GMT Content-Type: - application/json Content-Length: - - '2573' + - '2558' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - '0745439b-f54b-42eb-9b6c-996903c6e884' + - d9f64785-817e-417b-9ca5-9e9983f64692 Original-Request: - - req_buBiOVaWiEaNsL + - req_2rz3NUuXXXaFlL Request-Id: - - req_buBiOVaWiEaNsL + - req_2rz3NUuXXXaFlL 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: @@ -10182,17 +10597,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ", + "id": "sub_sched_1OAdlaIsgf92XbAOwZixXPav", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916362, + "created": 1699557590, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON82SEPiltIQ5N", + "customer": "cus_OyaxDUcjthheAX", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -10211,8 +10626,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6OAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6OAAU" + "salesforce_order_id": "8016s000001FXxuAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxuAAG" }, "phases": [ { @@ -10227,34 +10642,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "pIZTJWec", + "coupon": "a2JbnH3l", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi9AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi9AAE" + "salesforce_order_item_id": "8026s0000014MvJAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvJAAU" }, - "plan": "price_1NaNmOIsgf92XbAOC8yACG5g", - "price": "price_1NaNmOIsgf92XbAOC8yACG5g", + "plan": "price_1OAdlJIsgf92XbAOF6CtCFZn", + "price": "price_1OAdlJIsgf92XbAOF6CtCFZn", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6OAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6OAAU" + "salesforce_order_id": "8016s000001FXxuAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxuAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -10264,16 +10679,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNmwIsgf92XbAO9BHcTYeP", + "subscription": "sub_1OAdlaIsgf92XbAO0XuFNzWF", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdlaIsgf92XbAOwZixXPav"}' headers: User-Agent: - Faraday v2.4.0 @@ -10291,12 +10706,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:59:23 GMT + - Thu, 09 Nov 2023 19:19:50 GMT Set-Cookie: - - BrowserId=hzXpfDCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:23 + - BrowserId=9FvVVH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10311,18 +10726,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7120/5000000 + - api-usage=101/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6OAAU-8017e000000nQ6OAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXxuAAG-8016s000001FXxuAAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6OAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6OAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXxuAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXxuAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdlaIsgf92XbAOwZixXPav","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_2rz3NUuXXXaFlL"}' headers: User-Agent: - Faraday v2.4.0 @@ -10340,12 +10755,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:59:23 GMT + - Thu, 09 Nov 2023 19:19:51 GMT Set-Cookie: - - BrowserId=h7N9zzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:23 + - BrowserId=9JoW1380Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10358,20 +10773,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7115/5000000 + - api-usage=119/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrLfEAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxcmEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrLfEAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000KxcmEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdlaIsgf92XbAOwZixXPav?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -10383,13 +10798,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_buBiOVaWiEaNsL","request_duration_ms":642}}' + - '{"last_request_metrics":{"request_id":"req_WDTzRIzjhIET2d","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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10404,31 +10819,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:24 GMT + - Thu, 09 Nov 2023 19:19:51 GMT Content-Type: - application/json Content-Length: - - '3653' + - '3633' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_rNr8DpbPXo3tEp + - req_BBoi8lhTwF3zZX Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10437,17 +10860,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ", + "id": "sub_sched_1OAdlaIsgf92XbAOwZixXPav", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916362, + "created": 1699557590, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON82SEPiltIQ5N", + "customer": "cus_OyaxDUcjthheAX", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -10466,8 +10889,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6OAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6OAAU" + "salesforce_order_id": "8016s000001FXxuAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxuAAG" }, "phases": [ { @@ -10482,38 +10905,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "pIZTJWec", + "coupon": "a2JbnH3l", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi9AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi9AAE" + "salesforce_order_item_id": "8026s0000014MvJAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvJAAU" }, - "plan": "price_1NaNmOIsgf92XbAOC8yACG5g", + "plan": "price_1OAdlJIsgf92XbAOF6CtCFZn", "price": { - "id": "price_1NaNmOIsgf92XbAOC8yACG5g", + "id": "price_1OAdlJIsgf92XbAOF6CtCFZn", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916328, + "created": 1699557573, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6HAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6HAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyR1AAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyR1AAK" }, "nickname": null, - "product": "prod_ON82K2601Nkmw2", + "product": "prod_OyaxUU6u1SRw9K", "recurring": { "aggregate_usage": null, "interval": "month", @@ -10533,12 +10956,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6OAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6OAAU" + "salesforce_order_id": "8016s000001FXxuAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxuAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -10548,13 +10971,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNmwIsgf92XbAO9BHcTYeP", + "subscription": "sub_1OAdlaIsgf92XbAO0XuFNzWF", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG body: encoding: US-ASCII string: '' @@ -10573,12 +10996,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:59:24 GMT + - Thu, 09 Nov 2023 19:19:51 GMT Set-Cookie: - - BrowserId=iBbTmTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:24 + - BrowserId=9N82mH80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -10591,9 +11014,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7108/5000000 + - api-usage=113/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:59:23 GMT + - Thu, 09 Nov 2023 19:19:51 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -10602,13 +11025,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6OAAU"},"Id":"8017e000000nQ6OAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwjPAAS","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuh5AAB","EffectiveDate":"2023-08-01","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-01T18:59:11.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000971","TotalAmount":1440.0,"CreatedDate":"2023-08-01T18:59:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:23.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:59:23.000+0000","LastViewedDate":"2023-08-01T18:59:23.000+0000","LastReferencedDate":"2023-08-01T18:59:23.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxuAAG"},"Id":"8016s000001FXxuAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBdqAAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1OAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:45.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000268","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:19:44.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:51.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:51.000+0000","LastViewedDate":"2023-11-09T19:19:50.000+0000","LastReferencedDate":"2023-11-09T19:19:50.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":"a0z7e00000BDJmmAAH","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_1NaNmwIsgf92XbAOwUVKnhYZ","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsfAAE","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_1OAdlaIsgf92XbAOwZixXPav","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAdlaIsgf92XbAOwZixXPav"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNmUIsgf92XbAOGbprEs13 + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdlMIsgf92XbAOx01h41d0 body: encoding: US-ASCII string: '' @@ -10620,13 +11043,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_rNr8DpbPXo3tEp","request_duration_ms":201}}' + - '{"last_request_metrics":{"request_id":"req_BBoi8lhTwF3zZX","request_duration_ms":215}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10641,31 +11064,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:24 GMT + - Thu, 09 Nov 2023 19:19:52 GMT Content-Type: - application/json Content-Length: - - '2573' + - '2558' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_BOwLcPgguiarmY + - req_f2MVFnxKXwk58C Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10674,17 +11105,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNmUIsgf92XbAOGbprEs13", + "id": "sub_sched_1OAdlMIsgf92XbAOx01h41d0", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916334, + "created": 1699557576, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON82SEPiltIQ5N", + "customer": "cus_OyaxDUcjthheAX", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -10703,8 +11134,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6FAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6FAAU" + "salesforce_order_id": "8016s000001FXxpAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxpAAG" }, "phases": [ { @@ -10719,34 +11150,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "nfy0zssE", + "coupon": "qSILpsPf", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi4AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi4AAE" + "salesforce_order_item_id": "8026s0000014MvEAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvEAAU" }, - "plan": "price_1NaNmOIsgf92XbAOC8yACG5g", - "price": "price_1NaNmOIsgf92XbAOC8yACG5g", + "plan": "price_1OAdlJIsgf92XbAOF6CtCFZn", + "price": "price_1OAdlJIsgf92XbAOF6CtCFZn", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6FAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6FAAU" + "salesforce_order_id": "8016s000001FXxpAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxpAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -10756,13 +11187,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNmUIsgf92XbAO1gas58OX", + "subscription": "sub_1OAdlMIsgf92XbAOyrdDbH97", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdlaIsgf92XbAOwZixXPav body: encoding: US-ASCII string: '' @@ -10774,13 +11205,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_BOwLcPgguiarmY","request_duration_ms":218}}' + - '{"last_request_metrics":{"request_id":"req_f2MVFnxKXwk58C","request_duration_ms":215}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -10795,31 +11226,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:59:25 GMT + - Thu, 09 Nov 2023 19:19:52 GMT Content-Type: - application/json Content-Length: - - '2573' + - '2558' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_3pMj8UFPOKwbf6 + - req_RIU7hQpTGx7nRH Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -10828,17 +11267,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ", + "id": "sub_sched_1OAdlaIsgf92XbAOwZixXPav", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916362, + "created": 1699557590, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON82SEPiltIQ5N", + "customer": "cus_OyaxDUcjthheAX", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -10857,8 +11296,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6OAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6OAAU" + "salesforce_order_id": "8016s000001FXxuAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxuAAG" }, "phases": [ { @@ -10873,34 +11312,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "pIZTJWec", + "coupon": "a2JbnH3l", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi9AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi9AAE" + "salesforce_order_item_id": "8026s0000014MvJAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvJAAU" }, - "plan": "price_1NaNmOIsgf92XbAOC8yACG5g", - "price": "price_1NaNmOIsgf92XbAOC8yACG5g", + "plan": "price_1OAdlJIsgf92XbAOF6CtCFZn", + "price": "price_1OAdlJIsgf92XbAOF6CtCFZn", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6OAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6OAAU" + "salesforce_order_id": "8016s000001FXxuAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxuAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -10910,114 +11349,8 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNmwIsgf92XbAO9BHcTYeP", + "subscription": "sub_1OAdlaIsgf92XbAO0XuFNzWF", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6FAAU-8017e000000nQ6FAAU - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6FAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6FAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNmUIsgf92XbAOGbprEs13","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_0RF7Pzrekcedei"}' - 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: - - Wed, 11 Oct 2023 16:38:59 GMT - Set-Cookie: - - BrowserId=rZFbgGhUEe6vVdkxWprQuQ; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38: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=121/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCrYUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCrYUAW","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6OAAU-8017e000000nQ6OAAU - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6OAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6OAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNmwIsgf92XbAOwUVKnhYZ","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_buBiOVaWiEaNsL"}' - 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: - - Wed, 11 Oct 2023 16:38:59 GMT - Set-Cookie: - - BrowserId=rcZ1AGhUEe6ZJrdHm-NpDg; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38: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=118/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCrdUAG" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCrdUAG","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.yml b/test/vcr_cassettes/integration/translate/test_coupon/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.yml index 35074d35cf..7ddff06f90 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:59:59 GMT + - Thu, 09 Nov 2023 19:22:10 GMT Set-Cookie: - - BrowserId=nNu__zCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:59 + - BrowserId=R8CPEH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7230/5000000 + - api-usage=239/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBf2AAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZwpwAAC","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBf2AAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:00 GMT + - Thu, 09 Nov 2023 19:22:11 GMT Set-Cookie: - - BrowserId=nTHPTTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:00 + - BrowserId=R-wLpH81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7217/5000000 + - api-usage=239/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qZAAQ" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnPrAAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qZAAQ","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:00 GMT + - Thu, 09 Nov 2023 19:22:11 GMT Set-Cookie: - - BrowserId=nYfe-DCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:00 + - BrowserId=SBHjAH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7204/5000000 + - api-usage=239/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPrAAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qZAAQ","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:00 GMT + - Thu, 09 Nov 2023 19:22:11 GMT Set-Cookie: - - BrowserId=ncKd2DCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:00 + - BrowserId=SB93h381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7204/5000000 + - api-usage=239/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6RAAR" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRBAA0" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6RAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyRBAA0","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:01 GMT + - Thu, 09 Nov 2023 19:22:11 GMT Set-Cookie: - - BrowserId=nhvhzTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:01 + - BrowserId=SDlBSn81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7208/5000000 + - api-usage=239/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwpwAAC"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBf2AAE"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:01 GMT + - Thu, 09 Nov 2023 19:22:11 GMT Set-Cookie: - - BrowserId=nlZS-TCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:01 + - BrowserId=SEqmoX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7204/5000000 + - api-usage=239/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000Neuo5AAB" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1TAAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,14 +316,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000Neuo5AAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1TAAV","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 - string: '{"LastName":"Bianco","Email":"order_and_order_line_when_quote_ordered@example.com"}' + string: '{"LastName":"Bianco","Email":"order_and_order_line_when_quote_ordered_1@example.com"}' headers: User-Agent: - Faraday v2.4.0 @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:02 GMT + - Thu, 09 Nov 2023 19:22:12 GMT Set-Cookie: - - BrowserId=nqw6ezCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:02 + - BrowserId=SHLH2X81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7204/5000000 + - api-usage=239/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHi8OAAS" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY99CAAT" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHi8OAAS","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY99CAAT","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000Neuo5AAB","SBQQ__PrimaryContact__c":"0037e00001jHi8OAAS","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1TAAV","SBQQ__PrimaryContact__c":"0036s00000WY99CAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:03 GMT + - Thu, 09 Nov 2023 19:22:12 GMT Set-Cookie: - - BrowserId=nvhfQjCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:03 + - BrowserId=SJhRSX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7205/5000000 + - api-usage=240/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJn6AAH","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016Dl4AAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:04 GMT + - Thu, 09 Nov 2023 19:22:12 GMT Set-Cookie: - - BrowserId=n-QekjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:04 + - BrowserId=SPA1ln81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7205/5000000 + - api-usage=240/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJn6AAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016Dl4AAE body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:04 GMT + - Thu, 09 Nov 2023 19:22:12 GMT Set-Cookie: - - BrowserId=oCHDnzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:04 + - BrowserId=SP4_WX81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"Id\":\"a0z7e00000BDJn6AAH\",\"Name\":\"Q-00881\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwpwAAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"Id\":\"a0z6s0000016Dl4AAE\",\"Name\":\"Q-00198\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000Neuo5AAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"Id\":\"0017e00001iZwpwAAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000Neuo5AAB\"},\"Id\":\"0067e00000Neuo5AAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1TAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"Id\":\"0016s00000fzBf2AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"Id\":\"0066s00000CfE1TAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnPrAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qZAAQ body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:06 GMT + - Thu, 09 Nov 2023 19:22:13 GMT Set-Cookie: - - BrowserId=oOAxujCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:06 + - BrowserId=SUcH4H81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK\"},\"Id\":\"01t7e000009AnPrAAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"Id\":\"01t6s000004g3qZAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6RAAR\"},\"Product2Id\":\"01t7e000009AnPrAAK\",\"Id\":\"01u7e00000Isi6RAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyRBAA0\"},\"Product2Id\":\"01t6s000004g3qZAAQ\",\"Id\":\"01u6s000006MyRBAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"Id\":\"a0z7e00000BDJn6AAH\",\"Name\":\"Q-00881\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwpwAAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"Id\":\"a0z6s0000016Dl4AAE\",\"Name\":\"Q-00198\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000Neuo5AAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"Id\":\"0017e00001iZwpwAAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000Neuo5AAB\"},\"Id\":\"0067e00000Neuo5AAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\"},\"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/01t7e000009AnPrAAK\"},\"Id\":\"01t7e000009AnPrAAK\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1TAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"Id\":\"0016s00000fzBf2AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"Id\":\"0066s00000CfE1TAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"Id\":\"01t6s000004g3qZAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6RAAR\"},\"Product2Id\":\"01t7e000009AnPrAAK\",\"Id\":\"01u7e00000Isi6RAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRBAA0\"},\"Product2Id\":\"01t6s000004g3qZAAQ\",\"Id\":\"01u6s000006MyRBAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:07 GMT + - Thu, 09 Nov 2023 19:22:14 GMT Set-Cookie: - - BrowserId=oWcUdjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:07 + - BrowserId=SbDGKn81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,30 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuo5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\",\"Id\":\"0067e00000Neuo5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwpwAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00881\",\"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\":\"0017e00001iZwpwAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuo5AAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPrAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK\"},\"Id\":\"01t7e000009AnPrAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6RAAR\"},\"Product2Id\":\"01t7e000009AnPrAAK\",\"Id\":\"01u7e00000Isi6RAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6RAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"Id\":\"a0z6s0000016Dl4AAE\",\"Name\":\"Q-00198\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1TAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"Id\":\"0016s00000fzBf2AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"Id\":\"0066s00000CfE1TAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\"},\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016Dl4AAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qZAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRBAA0\",\"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-0001681\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"Id\":\"01t6s000004g3qZAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuo5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\",\"Id\":\"0067e00000Neuo5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwpwAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00881\",\"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\":\"0017e00001iZwpwAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuo5AAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPrAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK\"},\"Id\":\"01t7e000009AnPrAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6RAAR\"},\"Product2Id\":\"01t7e000009AnPrAAK\",\"Id\":\"01u7e00000Isi6RAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6RAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"Id\":\"a0z6s0000016Dl4AAE\",\"Name\":\"Q-00198\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1TAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"Id\":\"0016s00000fzBf2AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"Id\":\"0066s00000CfE1TAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\"},\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016Dl4AAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qZAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRBAA0\",\"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-0001681\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"Id\":\"01t6s000004g3qZAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -671,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:09 GMT + - Thu, 09 Nov 2023 19:22:15 GMT Set-Cookie: - - BrowserId=otos7zCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:09 + - BrowserId=Smruzn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:15 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -694,26 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"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/0067e00000Neuo5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\",\"Id\":\"0067e00000Neuo5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwpwAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00881\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwpwAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuo5AAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn6AAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6RAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPrAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"Id\":\"a0z6s0000016Dl4AAE\",\"Name\":\"Q-00198\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1TAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"Id\":\"0016s00000fzBf2AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"Id\":\"0066s00000CfE1TAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\"},\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016Dl4AAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qZAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRBAA0\",\"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-0001682\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"Id\":\"01t6s000004g3qZAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"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/0067e00000Neuo5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\",\"Id\":\"0067e00000Neuo5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwpwAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00881\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwpwAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuo5AAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn6AAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6RAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPrAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"Id\":\"a0z6s0000016Dl4AAE\",\"Name\":\"Q-00198\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1TAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"Id\":\"0016s00000fzBf2AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"Id\":\"0066s00000CfE1TAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\"},\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016Dl4AAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qZAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRBAA0\",\"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-0001682\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"Id\":\"01t6s000004g3qZAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:11 GMT + - Thu, 09 Nov 2023 19:22:16 GMT Set-Cookie: - - BrowserId=pD3cDjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:11 + - BrowserId=SwyFvH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,17 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH\"},\"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/0067e00000Neuo5AAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn6AAH\",\"AccountId\":\"0017e00001iZwpwAAC\",\"Id\":\"0067e00000Neuo5AAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwpwAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00881\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwpwAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000Neuo5AAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn6AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn6AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhEAAU\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn6AAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6RAAR\",\"Id\":\"a0v7e000008xWhEAAU\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPrAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016Dl4AAE\",\"AccountId\":\"0016s00000fzBf2AAE\",\"Id\":\"0066s00000CfE1TAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBf2AAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00198\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBf2AAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1TAAV\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016Dl4AAE\",\"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\":\"a0z6s0000016Dl4AAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tld1AAA\"},\"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-11-09 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\":\"a0z6s0000016Dl4AAE\",\"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\":\"a0v6s000000tld1AAA\",\"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-0001682\",\"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\":\"01u6s000006MyRBAA0\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qZAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qZAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qZAAQ\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -785,12 +786,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:12 GMT + - Thu, 09 Nov 2023 19:22:16 GMT Set-Cookie: - - BrowserId=pNFB2DCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:12 + - BrowserId=S0Yy3X81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -803,11 +804,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7210/5000000 + - api-usage=242/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -924,7 +925,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -935,14 +936,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1110,7 +1109,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 @@ -1126,7 +1126,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1144,9 +1146,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1290,9 +1291,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1414,9 +1415,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 @@ -1461,13 +1471,14 @@ http_interactions: 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":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 + 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":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 @@ -1703,7 +1714,8 @@ http_interactions: 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":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 + 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 @@ -1889,7 +1901,8 @@ http_interactions: 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":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 + 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 @@ -1900,7 +1913,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -1972,7 +1990,8 @@ http_interactions: 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":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 + 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 @@ -2018,7 +2037,8 @@ http_interactions: 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":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 + 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 @@ -2078,7 +2098,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2103,7 +2123,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2159,10 +2190,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE body: encoding: US-ASCII string: '' @@ -2181,12 +2212,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:13 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Set-Cookie: - - BrowserId=pWqbbTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:13 + - BrowserId=S5WL7n81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2199,9 +2230,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7206/5000000 + - api-usage=241/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:12 GMT + - Thu, 09 Nov 2023 19:22:16 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2210,15 +2241,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH"},"Id":"a0z7e00000BDJn6AAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00881","CreatedDate":"2023-08-01T19:00:03.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:12.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:00:12.000+0000","LastReferencedDate":"2023-08-01T19:00:12.000+0000","SBQQ__Account__c":"0017e00001iZwpwAAC","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T19:00:12.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":"0067e00000Neuo5AAB","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHi8OAAS","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE"},"Id":"a0z6s0000016Dl4AAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00198","CreatedDate":"2023-11-09T19:22:12.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:16.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:16.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:22:16.000+0000","LastReferencedDate":"2023-11-09T19:22:16.000+0000","SBQQ__Account__c":"0016s00000fzBf2AAE","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:22:16.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":"0066s00000CfE1TAAV","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY99CAAT","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJn6AAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016Dl4AAE%27 body: encoding: US-ASCII string: '' @@ -2237,12 +2268,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:14 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Set-Cookie: - - BrowserId=paX3FTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:14 + - BrowserId=S6Nt_n81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2255,7 +2286,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7206/5000000 + - api-usage=241/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2264,11 +2295,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhEAAU"},"Id":"a0v7e000008xWhEAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tld1AAA"},"Id":"a0v6s000000tld1AAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhEAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tld1AAA body: encoding: US-ASCII string: '' @@ -2287,12 +2318,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:14 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Set-Cookie: - - BrowserId=pd9-GzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:14 + - BrowserId=S6-jsn81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2305,9 +2336,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7204/5000000 + - api-usage=240/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:12 GMT + - Thu, 09 Nov 2023 19:22:16 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2316,14 +2347,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhEAAU"},"Id":"a0v7e000008xWhEAAU","IsDeleted":false,"Name":"QL-0001742","CreatedDate":"2023-08-01T19:00:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:12.000+0000","SBQQ__Quote__c":"a0z7e00000BDJn6AAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6RAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPrAAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tld1AAA"},"Id":"a0v6s000000tld1AAA","IsDeleted":false,"Name":"QL-0001683","CreatedDate":"2023-11-09T19:22:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:16.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:16.000+0000","SBQQ__Quote__c":"a0z6s0000016Dl4AAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRBAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qZAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"Twenty-five percent off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' @@ -2344,12 +2375,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:15 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Set-Cookie: - - BrowserId=pitTwjCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:15 + - BrowserId=S8p-uH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2362,9 +2393,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7204/5000000 + - api-usage=241/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsHEAW" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHeEAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2373,11 +2404,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsHEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHeEAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$10 off coupon","Amount_Off__c":10,"Duration__c":"once"}' @@ -2398,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:15 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Set-Cookie: - - BrowserId=pmuRQTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:15 + - BrowserId=S9zNhn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2416,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7211/5000000 + - api-usage=242/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsMEAW" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHjEAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2427,14 +2458,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsMEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHjEAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhEAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEsHEAW"}' + string: '{"Quote_Line__c":"a0v6s000000tld1AAA","Quote_Stripe_Coupon__c":"a1R6s000000uvHeEAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2452,12 +2483,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:16 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Set-Cookie: - - BrowserId=psQ4SzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:16 + - BrowserId=S-3lQH81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2470,9 +2501,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7207/5000000 + - api-usage=241/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVw1EAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5VEAS" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2481,14 +2512,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVw1EAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5VEAS","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote__c":"a0z7e00000BDJn6AAH","Quote_Stripe_Coupon__c":"a1R7e000007JEsMEAW"}' + string: '{"Quote__c":"a0z6s0000016Dl4AAE","Quote_Stripe_Coupon__c":"a1R6s000000uvHjEAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2506,12 +2537,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:16 GMT + - Thu, 09 Nov 2023 19:22:18 GMT Set-Cookie: - - BrowserId=pwaYVDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:16 + - BrowserId=TAFtTn81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2524,9 +2555,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7205/5000000 + - api-usage=240/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q7e000007DvD4EAK" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKMyEAO" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2535,11 +2566,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1Q7e000007DvD4EAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1Q6s000001FKMyEAO","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v7e000008xWhEAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tld1AAA%27 body: encoding: US-ASCII string: '' @@ -2558,12 +2589,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:16 GMT + - Thu, 09 Nov 2023 19:22:18 GMT Set-Cookie: - - BrowserId=p0dybzCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:16 + - BrowserId=TBUcUX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2576,7 +2607,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7205/5000000 + - api-usage=242/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2585,11 +2616,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVw1EAG"},"Id":"a1P7e000008TVw1EAG"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5VEAS"},"Id":"a1P6s000001Bk5VEAS"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVw1EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5VEAS body: encoding: US-ASCII string: '' @@ -2608,12 +2639,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:17 GMT + - Thu, 09 Nov 2023 19:22:18 GMT Set-Cookie: - - BrowserId=p4L04TCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:17 + - BrowserId=TCECkH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2626,9 +2657,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7207/5000000 + - api-usage=243/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:16 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2637,11 +2668,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVw1EAG"},"Id":"a1P7e000008TVw1EAG","IsDeleted":false,"Name":"0110","CreatedDate":"2023-08-01T19:00:16.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:16.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:16.000+0000","Quote_Stripe_Coupon__c":"a1R7e000007JEsHEAW","Quote_Line__c":"a0v7e000008xWhEAAU"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5VEAS"},"Id":"a1P6s000001Bk5VEAS","IsDeleted":false,"Name":"0006","CreatedDate":"2023-11-09T19:22:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:17.000+0000","Quote_Stripe_Coupon__c":"a1R6s000000uvHeEAI","Quote_Line__c":"a0v6s000000tld1AAA"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsHEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHeEAI body: encoding: US-ASCII string: '' @@ -2660,12 +2691,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:17 GMT + - Thu, 09 Nov 2023 19:22:18 GMT Set-Cookie: - - BrowserId=p7x68DCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:17 + - BrowserId=TDN5sX81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2678,9 +2709,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7207/5000000 + - api-usage=242/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:15 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2689,12 +2720,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsHEAW"},"Id":"a1R7e000007JEsHEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0112","CreatedDate":"2023-08-01T19:00:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:15.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHeEAI"},"Id":"a1R6s000000uvHeEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0006","CreatedDate":"2023-11-09T19:22:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:17.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five percent off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2715,12 +2746,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:18 GMT + - Thu, 09 Nov 2023 19:22:18 GMT Set-Cookie: - - BrowserId=p_TJnTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:18 + - BrowserId=TEfsK381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2735,14 +2766,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7206/5000000 + - api-usage=243/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2761,12 +2792,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:20 GMT + - Thu, 09 Nov 2023 19:22:19 GMT Set-Cookie: - - BrowserId=qU2iPDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:20 + - BrowserId=TQjKTX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2779,7 +2810,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7212/5000000 + - api-usage=241/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2788,12 +2819,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6TAAU"},"Id":"8017e000000nQ6TAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwpwAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuo5AAB","EffectiveDate":"2023-08-01","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":"00000972","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:00:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:19.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:00:19.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":"a0z7e00000BDJn6AAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXxzAAG"},"Id":"8016s000001FXxzAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBf2AAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1TAAV","EffectiveDate":"2023-11-09","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":"00000269","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:18.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:19.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:19.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":"a0z6s0000016Dl4AAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2814,12 +2845,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:20 GMT + - Thu, 09 Nov 2023 19:22:19 GMT Set-Cookie: - - BrowserId=qZbf5DCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:20 + - BrowserId=TRowGX81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2834,14 +2865,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7219/5000000 + - api-usage=239/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG body: encoding: US-ASCII string: '' @@ -2860,12 +2891,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:21 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Set-Cookie: - - BrowserId=qh9KoTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:21 + - BrowserId=TXbOu381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2878,9 +2909,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7208/5000000 + - api-usage=244/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:21 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2889,12 +2920,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU"},"Id":"8017e000000nQ6TAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwpwAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuo5AAB","EffectiveDate":"2023-08-01","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-01T19:00:20.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000972","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:00:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:00:21.000+0000","LastViewedDate":"2023-08-01T19:00:20.000+0000","LastReferencedDate":"2023-08-01T19:00: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":"a0z7e00000BDJn6AAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG"},"Id":"8016s000001FXxzAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBf2AAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1TAAV","EffectiveDate":"2023-11-09","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-11-09T19:22:20.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000269","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:18.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:20.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:20.000+0000","LastViewedDate":"2023-11-09T19:22:19.000+0000","LastReferencedDate":"2023-11-09T19:22:19.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":"a0z6s0000016Dl4AAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG body: encoding: US-ASCII string: '' @@ -2913,12 +2945,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:22 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Set-Cookie: - - BrowserId=ql3ZjTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:22 + - BrowserId=TYV1NX81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2931,9 +2963,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7220/5000000 + - api-usage=240/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:21 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2942,15 +2974,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU"},"Id":"8017e000000nQ6TAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwpwAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000Neuo5AAB","EffectiveDate":"2023-08-01","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-01T19:00:20.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000972","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:00:18.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:00:21.000+0000","LastViewedDate":"2023-08-01T19:00:21.000+0000","LastReferencedDate":"2023-08-01T19:00:21.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":"a0z7e00000BDJn6AAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG"},"Id":"8016s000001FXxzAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBf2AAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1TAAV","EffectiveDate":"2023-11-09","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-11-09T19:22:20.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000269","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:18.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:20.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:20.000+0000","LastViewedDate":"2023-11-09T19:22:20.000+0000","LastReferencedDate":"2023-11-09T19:22: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":"Not + Needed","SBQQ__Quote__c":"a0z6s0000016Dl4AAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6TAAU"]}' + string: '{"order_ids":["8016s000001FXxzAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2968,12 +3001,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:22 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Set-Cookie: - - BrowserId=qpcSaDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:22 + - BrowserId=TZRojX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2993,26 +3026,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHi8OAAS"},"Id":"0037e00001jHi8OAAS","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_and_order_line_when_quote_ordered@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:02.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:02.000+0000","LastViewedDate":"2023-08-01T19:00:02.000+0000","LastReferencedDate":"2023-08-01T19:00:02.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHi8OAAS","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuo5AAB"},"Id":"0067e00000Neuo5AAB","IsDeleted":false,"AccountId":"0017e00001iZwpwAAC","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:03.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:03.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T19:00:02.000+0000","LastReferencedDate":"2023-08-01T19:00:02.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJn6AAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC"},"Id":"0017e00001iZwpwAAC","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwpwAAC","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:59:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:59:59.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:59:59.000+0000","LastViewedDate":"2023-08-01T18:59:59.000+0000","LastReferencedDate":"2023-08-01T18:59:59.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":["0017e00001iZwpwAAC"],"Opportunities":["0067e00000Neuo5AAB"],"Contacts":["0037e00001jHi8OAAS"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHi8OAAS","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":"0067e00000Neuo5AAB","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T19:00:18.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY99CAAT"},"Id":"0036s00000WY99CAAT","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_and_order_line_when_quote_ordered_1@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:12.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:12.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:12.000+0000","LastViewedDate":"2023-11-09T19:22:12.000+0000","LastReferencedDate":"2023-11-09T19:22:12.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY99CAAT","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV"},"Id":"0066s00000CfE1TAAV","IsDeleted":false,"AccountId":"0016s00000fzBf2AAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:11.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:12.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:12.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:22:11.000+0000","LastReferencedDate":"2023-11-09T19:22:11.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016Dl4AAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBf2AAE"},"Id":"0016s00000fzBf2AAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBf2AAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:11.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:11.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:11.000+0000","LastViewedDate":"2023-11-09T19:22:11.000+0000","LastReferencedDate":"2023-11-09T19:22:11.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":["0016s00000fzBf2AAE"],"Opportunities":["0066s00000CfE1TAAV"],"Contacts":["0036s00000WY99CAAT"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY99CAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1TAAV","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:22:18.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwpwAAC","LastReferencedDate":"2023-08-01T19:00:18.000+0000","LastViewedDate":"2023-08-01T19:00:18.000+0000","SystemModstamp":"2023-08-01T19:00:18.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:18.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:03.000+0000","Name":"Q-00881","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJn6AAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn6AAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK"},"Id":"01t7e000009AnPrAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:00:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:01.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBf2AAE","LastReferencedDate":"2023-11-09T19:22:18.000+0000","LastViewedDate":"2023-11-09T19:22:18.000+0000","SystemModstamp":"2023-11-09T19:22:18.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:18.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:12.000+0000","Name":"Q-00198","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016Dl4AAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016Dl4AAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qZAAQ"},"Id":"01t6s000004g3qZAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:22:11.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:11.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:11.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/01u7e00000Isi6RAAR"},"Id":"01u7e00000Isi6RAAR","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPrAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T19:00:01.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:01.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/a0v7e000008xWhEAAU"},"Id":"a0v7e000008xWhEAAU","IsDeleted":false,"Name":"QL-0001742","CreatedDate":"2023-08-01T19:00:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:12.000+0000","SBQQ__Quote__c":"a0z7e00000BDJn6AAH","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":"01u7e00000Isi6RAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPrAAK","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-01","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-01 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":["01t7e000009AnPrAAK"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWhEAAU","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":"0000000965","SystemModstamp":"2023-08-01T19:00:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:21.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:19.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6RAAR","OrderId":"8017e000000nQ6TAAU","IsDeleted":false,"Product2Id":"01t7e000009AnPrAAK","Id":"8027e000001bPiEAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPiEAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000Neuo5AAB"],"Accounts":["0017e00001iZwpwAAC"],"OrderItems":["8027e000001bPiEAAU"],"Quotes":["a0z7e00000BDJn6AAH"],"Opportunity":{"Id":"0067e00000Neuo5AAB","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuo5AAB","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":"a0z7e00000BDJn6AAH","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T19:00:22.000+0000","LastViewedDate":"2023-08-01T19:00:22.000+0000","SystemModstamp":"2023-08-01T19:00:21.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:21.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:18.000+0000","TotalAmount":1440.00,"OrderNumber":"00000972","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T19:00:20.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000Neuo5AAB","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwpwAAC","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6TAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRBAA0"},"Id":"01u6s000006MyRBAA0","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qZAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:22:11.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:11.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:11.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tld1AAA"},"Id":"a0v6s000000tld1AAA","IsDeleted":false,"Name":"QL-0001683","CreatedDate":"2023-11-09T19:22:16.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:16.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:16.000+0000","SBQQ__Quote__c":"a0z6s0000016Dl4AAE","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":"01u6s000006MyRBAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qZAAQ","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-11-09","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-11-09 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":["01t6s000004g3qZAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tld1AAA","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":"0000000498","SystemModstamp":"2023-11-09T19:22:20.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:20.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:19.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRBAA0","OrderId":"8016s000001FXxzAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qZAAQ","Id":"8026s0000014MvOAAU","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvOAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1TAAV"],"Accounts":["0016s00000fzBf2AAE"],"OrderItems":["8026s0000014MvOAAU"],"Quotes":["a0z6s0000016Dl4AAE"],"Opportunity":{"Id":"0066s00000CfE1TAAV","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1TAAV","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":"a0z6s0000016Dl4AAE","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:22:20.000+0000","LastViewedDate":"2023-11-09T19:22:20.000+0000","SystemModstamp":"2023-11-09T19:22:20.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:20.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:18.000+0000","TotalAmount":1440.00,"OrderNumber":"00000269","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:22:20.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1TAAV","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBf2AAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXxzAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXxzAAG","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 @@ -3029,10 +3063,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6TAAU%27%0A + uri: https://connect-saas-89822-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%278016s000001FXxzAAG%27%0A body: encoding: US-ASCII string: '' @@ -3051,12 +3085,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:24 GMT + - Thu, 09 Nov 2023 19:22:21 GMT Set-Cookie: - - BrowserId=q_pL6jCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:24 + - BrowserId=TkSlxn81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3069,7 +3103,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7221/5000000 + - api-usage=244/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3078,11 +3112,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU"},"Type":"New","OpportunityId":"0067e00000Neuo5AAB","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000Neuo5AAB"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG"},"Type":"New","OpportunityId":"0066s00000CfE1TAAV","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1TAAV"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6TAAU%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXxzAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -3101,12 +3135,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:25 GMT + - Thu, 09 Nov 2023 19:22:21 GMT Set-Cookie: - - BrowserId=rDyEcDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:25 + - BrowserId=TlHsRX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3119,7 +3153,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7208/5000000 + - api-usage=241/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3128,14 +3162,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU"},"Id":"8017e000000nQ6TAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG"},"Id":"8016s000001FXxzAAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZwpwAAC&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZwpwAAC + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBf2AAE&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBf2AAE headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3144,13 +3178,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - cdaf02d3-8c5c-409f-aa38-1d9accf9ca53 + - bb729a3a-06a8-40a5-9b0b-85f77ef44c1c 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3165,37 +3199,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:25 GMT + - Thu, 09 Nov 2023 19:22:22 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - cdaf02d3-8c5c-409f-aa38-1d9accf9ca53 + - bb729a3a-06a8-40a5-9b0b-85f77ef44c1c Original-Request: - - req_QW6kSYvvQoyCQU + - req_0ytDvmv28yqTfC Request-Id: - - req_QW6kSYvvQoyCQU + - req_0ytDvmv28yqTfC 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: @@ -3204,11 +3245,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON84Mw8k8yHniP", + "id": "cus_Oyb0jD2V8tLndh", "object": "customer", "address": null, "balance": 0, - "created": 1690916425, + "created": 1699557742, "currency": null, "default_currency": null, "default_source": null, @@ -3216,7 +3257,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "C4F113E3", + "invoice_prefix": "4188314B", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3225,10 +3266,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwpwAAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwpwAAC" + "salesforce_account_id": "0016s00000fzBf2AAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBf2AAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3236,13 +3277,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwpwAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBf2AAE body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON84Mw8k8yHniP"}' + string: '{"Stripe_ID__c":"cus_Oyb0jD2V8tLndh"}' headers: User-Agent: - Faraday v2.4.0 @@ -3260,12 +3301,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:26 GMT + - Thu, 09 Nov 2023 19:22:22 GMT Set-Cookie: - - BrowserId=rK3j9zCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:26 + - BrowserId=TqO1yH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3280,17 +3321,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7208/5000000 + - api-usage=245/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnPrAAK&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnPrAAK + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qZAAQ&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qZAAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3299,15 +3340,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_QW6kSYvvQoyCQU","request_duration_ms":325}}' + - '{"last_request_metrics":{"request_id":"req_0ytDvmv28yqTfC","request_duration_ms":394}}' Idempotency-Key: - - 39c04f30-a4a4-4e89-a452-27d4bc9ad8e2 + - c7de1f75-9970-43a1-bd10-aa2ebc9998c3 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3322,37 +3363,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:26 GMT + - Thu, 09 Nov 2023 19:22:22 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 39c04f30-a4a4-4e89-a452-27d4bc9ad8e2 + - c7de1f75-9970-43a1-bd10-aa2ebc9998c3 Original-Request: - - req_664yddrMDLcc1M + - req_Gu0Y2yrH9XIwby Request-Id: - - req_664yddrMDLcc1M + - req_Gu0Y2yrH9XIwby 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: @@ -3361,39 +3409,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON84P6kNOPHHjJ", + "id": "prod_Oyb0ZtIi30bSQa", "object": "product", "active": true, "attributes": [], - "created": 1690916426, + "created": 1699557742, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnPrAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnPrAAK" + "salesforce_product2_id": "01t6s000004g3qZAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qZAAQ" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-91", + "sku": "rest-product2--2023-11-09-000000-utc-5", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916426, + "updated": 1699557742, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qZAAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON84P6kNOPHHjJ"}' + string: '{"Stripe_ID__c":"prod_Oyb0ZtIi30bSQa"}' headers: User-Agent: - Faraday v2.4.0 @@ -3411,12 +3460,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:26 GMT + - Thu, 09 Nov 2023 19:22:22 GMT Set-Cookie: - - BrowserId=rSlWKDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:26 + - BrowserId=Tu1pXn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3431,14 +3480,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7206/5000000 + - api-usage=245/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPrAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qZAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3457,12 +3506,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:27 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=rXfq5DCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:27 + - BrowserId=T6b00X81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3475,7 +3524,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7209/5000000 + - api-usage=240/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3485,10 +3534,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPrAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qZAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3507,12 +3556,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:27 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=ra6yfDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:27 + - BrowserId=T7N4RH81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3525,7 +3574,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7213/5000000 + - api-usage=242/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3535,10 +3584,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qZAAQ body: encoding: US-ASCII string: '' @@ -3557,12 +3606,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:28 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=rebZKDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:28 + - BrowserId=T8Aif381Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3575,9 +3624,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7222/5000000 + - api-usage=243/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:26 GMT + - Thu, 09 Nov 2023 19:22:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3586,15 +3635,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPrAAK"},"Id":"01t7e000009AnPrAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:00:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:26.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/01t6s000004g3qZAAQ"},"Id":"01t6s000004g3qZAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:22:11.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:23.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_ON84P6kNOPHHjJ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON84P6kNOPHHjJ"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_Oyb0ZtIi30bSQa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_Oyb0ZtIi30bSQa"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiEAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvOAAU%27%0A body: encoding: US-ASCII string: '' @@ -3613,12 +3662,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:28 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=riwfnDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:28 + - BrowserId=T9B2aH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3631,7 +3680,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7223/5000000 + - api-usage=243/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3641,10 +3690,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiEAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvOAAU%27%0A body: encoding: US-ASCII string: '' @@ -3663,12 +3712,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:28 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=rmWmezCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:28 + - BrowserId=T9-4W381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3681,7 +3730,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7209/5000000 + - api-usage=246/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3691,10 +3740,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPrAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qZAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3713,12 +3762,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:29 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=rqQPYTCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:29 + - BrowserId=T-0l9X81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3731,7 +3780,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7206/5000000 + - api-usage=244/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3741,13 +3790,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON84P6kNOPHHjJ&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6RAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6RAAR + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_Oyb0ZtIi30bSQa&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRBAA0&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRBAA0 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3755,16 +3804,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_664yddrMDLcc1M","request_duration_ms":271}}' Idempotency-Key: - - a2d6c5ab-2353-423a-bfc3-9eafa29c0608 + - 5a33d6f6-3b3f-4944-afd7-d2750fd82262 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3779,37 +3826,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:29 GMT + - Thu, 09 Nov 2023 19:22:24 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - a2d6c5ab-2353-423a-bfc3-9eafa29c0608 + - 5a33d6f6-3b3f-4944-afd7-d2750fd82262 Original-Request: - - req_fnINkpygWj1rJo + - req_X5Q5iftghJKtxR Request-Id: - - req_fnINkpygWj1rJo + - req_X5Q5iftghJKtxR 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: @@ -3818,21 +3872,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNo1Isgf92XbAO2Fiu2cqk", + "id": "price_1OAdo4Isgf92XbAOpkW2jX3L", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916429, + "created": 1699557744, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6RAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6RAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRBAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRBAA0" }, "nickname": null, - "product": "prod_ON84P6kNOPHHjJ", + "product": "prod_Oyb0ZtIi30bSQa", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3847,13 +3901,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6RAAR + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRBAA0 body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNo1Isgf92XbAO2Fiu2cqk"}' + string: '{"Stripe_ID__c":"price_1OAdo4Isgf92XbAOpkW2jX3L"}' headers: User-Agent: - Faraday v2.4.0 @@ -3871,12 +3925,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:29 GMT + - Thu, 09 Nov 2023 19:22:24 GMT Set-Cookie: - - BrowserId=rwahSzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:29 + - BrowserId=UCSJan81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3891,14 +3945,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7208/5000000 + - api-usage=241/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPiEAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvOAAU%27 body: encoding: US-ASCII string: '' @@ -3917,12 +3971,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:30 GMT + - Thu, 09 Nov 2023 19:22:25 GMT Set-Cookie: - - BrowserId=r0qH8DCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:30 + - BrowserId=UDg5B381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3935,7 +3989,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7227/5000000 + - api-usage=246/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3944,11 +3998,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPaEAI"},"Id":"a1N7e000002flPaEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hwEAA"},"Id":"a1N6s00000113hwEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPaEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tld1AAA%27 body: encoding: US-ASCII string: '' @@ -3967,12 +4021,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:30 GMT + - Thu, 09 Nov 2023 19:22:25 GMT Set-Cookie: - - BrowserId=r4PoBzCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:30 + - BrowserId=UEP4d381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3985,9 +4039,59 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7230/5000000 + - api-usage=247/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":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5VEAS"},"Id":"a1P6s000001Bk5VEAS"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hwEAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:22:25 GMT + Set-Cookie: + - BrowserId=UE-4kn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22: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=244/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:21 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3996,12 +4100,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPaEAI"},"Id":"a1N7e000002flPaEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0133","CreatedDate":"2023-08-01T19:00:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:21.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five - percent off coupon","Order_Item__c":"8027e000001bPiEAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsHEAW","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hwEAA"},"Id":"a1N6s00000113hwEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0009","CreatedDate":"2023-11-09T19:22:20.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:20.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:20.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + percent off coupon","Order_Item__c":"8026s0000014MvOAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHeEAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsHEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHeEAI body: encoding: US-ASCII string: '' @@ -4020,12 +4124,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:31 GMT + - Thu, 09 Nov 2023 19:22:25 GMT Set-Cookie: - - BrowserId=r74xbjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:31 + - BrowserId=UF2as381Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4038,9 +4142,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7228/5000000 + - api-usage=241/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:15 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4049,15 +4153,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsHEAW"},"Id":"a1R7e000007JEsHEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0112","CreatedDate":"2023-08-01T19:00:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:15.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHeEAI"},"Id":"a1R6s000000uvHeEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0006","CreatedDate":"2023-11-09T19:22:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:17.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five percent off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=Twenty-five+percent+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPaEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPaEAI + string: name=Twenty-five+percent+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hwEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hwEAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4066,15 +4170,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fnINkpygWj1rJo","request_duration_ms":263}}' + - '{"last_request_metrics":{"request_id":"req_Gu0Y2yrH9XIwby","request_duration_ms":257}}' Idempotency-Key: - - eca2f8fe-2e39-47e2-87b6-17a68cdddb92 + - 402e8a0d-54dd-48a0-a87c-c5c03e8fbacf 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4089,37 +4193,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:31 GMT + - Thu, 09 Nov 2023 19:22:25 GMT Content-Type: - application/json Content-Length: - - '552' + - '547' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - eca2f8fe-2e39-47e2-87b6-17a68cdddb92 + - 402e8a0d-54dd-48a0-a87c-c5c03e8fbacf Original-Request: - - req_sYWKbyXuXarXwJ + - req_ytYqab4vjmE9ow Request-Id: - - req_sYWKbyXuXarXwJ + - req_ytYqab4vjmE9ow 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: @@ -4128,18 +4239,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "edsQYMRp", + "id": "FxHhUfW0", "object": "coupon", "amount_off": null, - "created": 1690916431, + "created": 1699557745, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPaEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPaEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hwEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hwEAA" }, "name": "Twenty-five percent off coupon", "percent_off": 25.0, @@ -4147,13 +4258,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPaEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hwEAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"edsQYMRp"}' + string: '{"Stripe_ID__c":"FxHhUfW0"}' headers: User-Agent: - Faraday v2.4.0 @@ -4171,12 +4282,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:31 GMT + - Thu, 09 Nov 2023 19:22:25 GMT Set-Cookie: - - BrowserId=sBmYfDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:31 + - BrowserId=UJEHWH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4191,14 +4302,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7231/5000000 + - api-usage=245/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -4217,12 +4328,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:32 GMT + - Thu, 09 Nov 2023 19:22:25 GMT Set-Cookie: - - BrowserId=sFSlJDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:32 + - BrowserId=UKJsSX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4235,11 +4346,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7229/5000000 + - api-usage=245/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4356,7 +4467,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4367,14 +4478,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4542,7 +4651,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 @@ -4558,7 +4668,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4576,9 +4688,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4722,9 +4833,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4846,9 +4957,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 @@ -4893,13 +5013,14 @@ http_interactions: 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":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 + 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":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 @@ -5135,7 +5256,8 @@ http_interactions: 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":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 + 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 @@ -5321,7 +5443,8 @@ http_interactions: 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":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 + 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 @@ -5332,7 +5455,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5404,7 +5532,8 @@ http_interactions: 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":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 + 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 @@ -5450,7 +5579,8 @@ http_interactions: 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":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 + 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 @@ -5510,7 +5640,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5535,7 +5665,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5591,13 +5732,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsHEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHeEAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"edsQYMRp"}' + string: '{"Stripe_ID__c":"FxHhUfW0"}' headers: User-Agent: - Faraday v2.4.0 @@ -5615,12 +5756,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:33 GMT + - Thu, 09 Nov 2023 19:22:26 GMT Set-Cookie: - - BrowserId=sOMC3zCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:33 + - BrowserId=UPTR-381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5635,14 +5776,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7224/5000000 + - api-usage=248/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5661,12 +5802,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:33 GMT + - Thu, 09 Nov 2023 19:22:26 GMT Set-Cookie: - - BrowserId=sR-9zDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:33 + - BrowserId=UQTXX381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5679,11 +5820,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7229/5000000 + - api-usage=242/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5800,7 +5941,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5811,14 +5952,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5986,7 +6125,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 @@ -6002,7 +6142,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -6020,9 +6162,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -6166,9 +6307,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6290,9 +6431,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 @@ -6337,13 +6487,14 @@ http_interactions: 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":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 + 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":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 @@ -6579,7 +6730,8 @@ http_interactions: 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":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 + 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 @@ -6765,7 +6917,8 @@ http_interactions: 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":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 + 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 @@ -6776,7 +6929,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6848,7 +7006,8 @@ http_interactions: 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":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 + 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 @@ -6894,7 +7053,8 @@ http_interactions: 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":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 + 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 @@ -6954,7 +7114,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6979,7 +7139,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -7035,30 +7206,18 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNo1Isgf92XbAO2Fiu2cqk + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXxzAAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_sYWKbyXuXarXwJ","request_duration_ms":228}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -7068,75 +7227,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 19:00:34 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_M6IZYPy68UetV9 - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:22:26 GMT + Set-Cookie: + - BrowserId=UU9OIX81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:26 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=242/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNo1Isgf92XbAO2Fiu2cqk", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916429, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6RAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6RAAR" - }, - "nickname": null, - "product": "prod_ON84P6kNOPHHjJ", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA"},"Id":"a1N6s00000113hvEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6TAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016Dl4AAE%27 body: encoding: US-ASCII string: '' @@ -7155,12 +7278,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:34 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Set-Cookie: - - BrowserId=scwC0TCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:34 + - BrowserId=UV3NQ381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7173,7 +7296,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7230/5000000 + - api-usage=246/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7182,11 +7305,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY"},"Id":"a1N7e000002flPZEAY"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKMyEAO"},"Id":"a1Q6s000001FKMyEAO"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA body: encoding: US-ASCII string: '' @@ -7205,12 +7328,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:34 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Set-Cookie: - - BrowserId=sgYlszCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:34 + - BrowserId=UWnbAn81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7223,9 +7346,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7232/5000000 + - api-usage=243/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:21 GMT + - Thu, 09 Nov 2023 19:22:20 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7234,12 +7357,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY"},"Id":"a1N7e000002flPZEAY","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0132","CreatedDate":"2023-08-01T19:00:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:21.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nQ6TAAU","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsMEAW","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA"},"Id":"a1N6s00000113hvEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0008","CreatedDate":"2023-11-09T19:22:20.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:20.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:20.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXxzAAG","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHjEAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsMEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHjEAI body: encoding: US-ASCII string: '' @@ -7258,12 +7381,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:35 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Set-Cookie: - - BrowserId=skS1xDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:35 + - BrowserId=UXaFPX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7276,9 +7399,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7230/5000000 + - api-usage=246/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:15 GMT + - Thu, 09 Nov 2023 19:22:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7287,15 +7410,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsMEAW"},"Id":"a1R7e000007JEsMEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0113","CreatedDate":"2023-08-01T19:00:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:15.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHjEAI"},"Id":"a1R6s000000uvHjEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0007","CreatedDate":"2023-11-09T19:22:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:17.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPZEAY&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPZEAY¤cy=usd + string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hvEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hvEAA¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7304,15 +7427,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_M6IZYPy68UetV9","request_duration_ms":178}}' + - '{"last_request_metrics":{"request_id":"req_ytYqab4vjmE9ow","request_duration_ms":237}}' Idempotency-Key: - - 3add66dc-24ad-43ba-a7d6-3b5f59a42239 + - 75f3a47d-09cf-44f6-ac38-c005d0f9bc11 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7327,37 +7450,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:35 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 3add66dc-24ad-43ba-a7d6-3b5f59a42239 + - 75f3a47d-09cf-44f6-ac38-c005d0f9bc11 Original-Request: - - req_He9eeGYqgdQKbz + - req_mlFRkWnFkHpLvy Request-Id: - - req_He9eeGYqgdQKbz + - req_mlFRkWnFkHpLvy 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: @@ -7366,18 +7496,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "TLSyFeRb", + "id": "edhm2FDw", "object": "coupon", "amount_off": 1000, - "created": 1690916435, + "created": 1699557747, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPZEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPZEAY" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hvEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hvEAA" }, "name": "$10 off coupon", "percent_off": null, @@ -7385,13 +7515,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"TLSyFeRb"}' + string: '{"Stripe_ID__c":"edhm2FDw"}' headers: User-Agent: - Faraday v2.4.0 @@ -7409,12 +7539,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:36 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Set-Cookie: - - BrowserId=sqJmCzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:36 + - BrowserId=UafODX81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7429,17 +7559,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7227/5000000 + - api-usage=242/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsMEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHjEAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"TLSyFeRb"}' + string: '{"Stripe_ID__c":"edhm2FDw"}' headers: User-Agent: - Faraday v2.4.0 @@ -7457,12 +7587,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:36 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Set-Cookie: - - BrowserId=suEcjDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:36 + - BrowserId=UbpsCX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7477,14 +7607,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7231/5000000 + - api-usage=243/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON84Mw8k8yHniP?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oyb0jD2V8tLndh?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7496,13 +7626,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_He9eeGYqgdQKbz","request_duration_ms":216}}' + - '{"last_request_metrics":{"request_id":"req_X5Q5iftghJKtxR","request_duration_ms":262}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7517,31 +7647,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:36 GMT + - Thu, 09 Nov 2023 19:22:27 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_4V7Pwohi5eyLDf + - req_l9RrpPIbHxIs6H Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7550,11 +7688,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON84Mw8k8yHniP", + "id": "cus_Oyb0jD2V8tLndh", "object": "customer", "address": null, "balance": 0, - "created": 1690916425, + "created": 1699557742, "currency": null, "default_currency": null, "default_source": null, @@ -7562,7 +7700,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "C4F113E3", + "invoice_prefix": "4188314B", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7571,10 +7709,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwpwAAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwpwAAC" + "salesforce_account_id": "0016s00000fzBf2AAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBf2AAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7582,13 +7720,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdo4Isgf92XbAOpkW2jX3L + 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_l9RrpPIbHxIs6H","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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:22:28 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_c0Xqtqblh67r57 + 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_1OAdo4Isgf92XbAOpkW2jX3L", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557744, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRBAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRBAA0" + }, + "nickname": null, + "product": "prod_Oyb0ZtIi30bSQa", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6TAAU&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6TAAU&start_date=1690848000&customer=cus_ON84Mw8k8yHniP&phases[0][items][0][price]=price_1NaNo1Isgf92XbAO2Fiu2cqk&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPiEAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPiEAAU&phases[0][items][0][discounts][0][coupon]=edsQYMRp&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6TAAU&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6TAAU&phases[0][discounts][0][coupon]=TLSyFeRb + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXxzAAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxzAAG&start_date=1699488000&customer=cus_Oyb0jD2V8tLndh&phases[0][items][0][price]=price_1OAdo4Isgf92XbAOpkW2jX3L&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvOAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvOAAU&phases[0][items][0][discounts][0][coupon]=FxHhUfW0&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXxzAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxzAAG&phases[0][discounts][0][coupon]=edhm2FDw headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7597,15 +7840,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4V7Pwohi5eyLDf","request_duration_ms":195}}' + - '{"last_request_metrics":{"request_id":"req_mlFRkWnFkHpLvy","request_duration_ms":221}}' Idempotency-Key: - - 12697762-99e9-43f4-ad47-bddbd7e79edf + - 4cb3bc15-63f9-4e4e-be3b-b14c07201dd2 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7620,37 +7863,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:37 GMT + - Thu, 09 Nov 2023 19:22:28 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 12697762-99e9-43f4-ad47-bddbd7e79edf + - 4cb3bc15-63f9-4e4e-be3b-b14c07201dd2 Original-Request: - - req_oT8ccNZKBgXtts + - req_iwVzsq5ValS0Zb Request-Id: - - req_oT8ccNZKBgXtts + - req_iwVzsq5ValS0Zb 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: @@ -7659,17 +7910,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNo9Isgf92XbAO8Rln2b95", + "id": "sub_sched_1OAdo8Isgf92XbAOyQH7Q0Cn", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916437, + "created": 1699557748, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON84Mw8k8yHniP", + "customer": "cus_Oyb0jD2V8tLndh", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7688,8 +7939,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6TAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6TAAU" + "salesforce_order_id": "8016s000001FXxzAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxzAAG" }, "phases": [ { @@ -7698,45 +7949,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "TLSyFeRb", + "coupon": "edhm2FDw", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "TLSyFeRb", + "coupon": "edhm2FDw", "discount": null } ], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "edsQYMRp", + "coupon": "FxHhUfW0", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiEAAU" + "salesforce_order_item_id": "8026s0000014MvOAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvOAAU" }, - "plan": "price_1NaNo1Isgf92XbAO2Fiu2cqk", - "price": "price_1NaNo1Isgf92XbAO2Fiu2cqk", + "plan": "price_1OAdo4Isgf92XbAOpkW2jX3L", + "price": "price_1OAdo4Isgf92XbAOpkW2jX3L", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6TAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6TAAU" + "salesforce_order_id": "8016s000001FXxzAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxzAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7746,16 +7997,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNo9Isgf92XbAODl4zwIgr", + "subscription": "sub_1OAdo8Isgf92XbAOloYYu8sp", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6TAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxzAAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNo9Isgf92XbAO8Rln2b95"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdo8Isgf92XbAOyQH7Q0Cn"}' headers: User-Agent: - Faraday v2.4.0 @@ -7773,12 +8024,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:37 GMT + - Thu, 09 Nov 2023 19:22:28 GMT Set-Cookie: - - BrowserId=s8WItzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:37 + - BrowserId=UnkoaH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7793,18 +8044,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7231/5000000 + - api-usage=247/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6TAAU-8017e000000nQ6TAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXxzAAG-8016s000001FXxzAAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6TAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6TAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNo9Isgf92XbAO8Rln2b95","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXxzAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXxzAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdo8Isgf92XbAOyQH7Q0Cn","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_iwVzsq5ValS0Zb"}' headers: User-Agent: - Faraday v2.4.0 @@ -7822,12 +8073,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:38 GMT + - Thu, 09 Nov 2023 19:22:29 GMT Set-Cookie: - - BrowserId=tCi3xjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:38 + - BrowserId=Upodk381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7840,20 +8091,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7230/5000000 + - api-usage=243/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrLkEAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxcnEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrLkEAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000KxcnEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNo9Isgf92XbAO8Rln2b95?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdo8Isgf92XbAOyQH7Q0Cn?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7865,13 +8116,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_oT8ccNZKBgXtts","request_duration_ms":832}}' + - '{"last_request_metrics":{"request_id":"req_c0Xqtqblh67r57","request_duration_ms":178}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7886,31 +8137,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:00:38 GMT + - Thu, 09 Nov 2023 19:22:29 GMT Content-Type: - application/json Content-Length: - - '3745' + - '3725' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_7ehGTO2zVDReEd + - req_BfKRVts8Ge36KF Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7919,17 +8178,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNo9Isgf92XbAO8Rln2b95", + "id": "sub_sched_1OAdo8Isgf92XbAOyQH7Q0Cn", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916437, + "created": 1699557748, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON84Mw8k8yHniP", + "customer": "cus_Oyb0jD2V8tLndh", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7948,8 +8207,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6TAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6TAAU" + "salesforce_order_id": "8016s000001FXxzAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxzAAG" }, "phases": [ { @@ -7958,49 +8217,49 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "TLSyFeRb", + "coupon": "edhm2FDw", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "TLSyFeRb", + "coupon": "edhm2FDw", "discount": null } ], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "edsQYMRp", + "coupon": "FxHhUfW0", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiEAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiEAAU" + "salesforce_order_item_id": "8026s0000014MvOAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvOAAU" }, - "plan": "price_1NaNo1Isgf92XbAO2Fiu2cqk", + "plan": "price_1OAdo4Isgf92XbAOpkW2jX3L", "price": { - "id": "price_1NaNo1Isgf92XbAO2Fiu2cqk", + "id": "price_1OAdo4Isgf92XbAOpkW2jX3L", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916429, + "created": 1699557744, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6RAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6RAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRBAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRBAA0" }, "nickname": null, - "product": "prod_ON84P6kNOPHHjJ", + "product": "prod_Oyb0ZtIi30bSQa", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8020,12 +8279,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6TAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6TAAU" + "salesforce_order_id": "8016s000001FXxzAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxzAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -8035,13 +8294,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNo9Isgf92XbAODl4zwIgr", + "subscription": "sub_1OAdo8Isgf92XbAOloYYu8sp", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20WHERE%20Order__c%20=%20%278017e000000nQ6TAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Order__c%20=%20%278016s000001FXxzAAG%27 body: encoding: US-ASCII string: '' @@ -8060,12 +8319,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:39 GMT + - Thu, 09 Nov 2023 19:22:29 GMT Set-Cookie: - - BrowserId=tN7ofzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:39 + - BrowserId=UtaxoH81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8078,7 +8337,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7231/5000000 + - api-usage=247/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8087,11 +8346,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY"},"Id":"a1N7e000002flPZEAY"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA"},"Id":"a1N6s00000113hvEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA body: encoding: US-ASCII string: '' @@ -8110,12 +8369,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:40 GMT + - Thu, 09 Nov 2023 19:22:29 GMT Set-Cookie: - - BrowserId=tSeKUzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:40 + - BrowserId=UuMNS381Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8128,9 +8387,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7232/5000000 + - api-usage=243/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:36 GMT + - Thu, 09 Nov 2023 19:22:27 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8139,60 +8398,7 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPZEAY"},"Id":"a1N7e000002flPZEAY","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0132","CreatedDate":"2023-08-01T19:00:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:36.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nQ6TAAU","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsMEAW","Stripe_ID__c":"TLSyFeRb","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/TLSyFeRb"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6TAAU-8017e000000nQ6TAAU - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6TAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6TAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNo9Isgf92XbAO8Rln2b95","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_oT8ccNZKBgXtts"}' - 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: - - Wed, 11 Oct 2023 16:38:58 GMT - Set-Cookie: - - BrowserId=rQECW2hUEe67fp--4hV0jQ; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:58 - GMT; Max-Age=31536000 - Strict-Transport-Security: - - max-age=63072000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Xss-Protection: - - 1; mode=block - X-Robots-Tag: - - none - Cache-Control: - - no-cache,must-revalidate,max-age=0,no-store,private - Sforce-Limit-Info: - - api-usage=116/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCrTUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCrTUAW","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hvEAA"},"Id":"a1N6s00000113hvEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0008","CreatedDate":"2023-11-09T19:22:20.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:27.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:27.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXxzAAG","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHjEAI","Stripe_ID__c":"edhm2FDw","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/edhm2FDw"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/stripe_invoice_final_due_amount_takes_into_account_coupons.yml b/test/vcr_cassettes/integration/translate/test_coupon/stripe_invoice_final_due_amount_takes_into_account_coupons.yml index c213ead77f..83f48f7d79 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/stripe_invoice_final_due_amount_takes_into_account_coupons.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/stripe_invoice_final_due_amount_takes_into_account_coupons.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:40 GMT + - Thu, 09 Nov 2023 19:22:30 GMT Set-Cookie: - - BrowserId=tXyINDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:40 + - BrowserId=U7iFh381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7225/5000000 + - api-usage=247/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBf7AAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZwnhAAC","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBf7AAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:41 GMT + - Thu, 09 Nov 2023 19:22:31 GMT Set-Cookie: - - BrowserId=tdV9SjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:41 + - BrowserId=U9yI_n81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7228/5000000 + - api-usage=244/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qeAAA" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnPwAAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qeAAA","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:41 GMT + - Thu, 09 Nov 2023 19:22:31 GMT Set-Cookie: - - BrowserId=tilCsjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:41 + - BrowserId=U__Icn81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7229/5000000 + - api-usage=249/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPwAAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qeAAA","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:42 GMT + - Thu, 09 Nov 2023 19:22:31 GMT Set-Cookie: - - BrowserId=tl41RjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:42 + - BrowserId=VAwkSH81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7234/5000000 + - api-usage=243/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6WAAR" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRGAA0" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6WAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyRGAA0","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:42 GMT + - Thu, 09 Nov 2023 19:22:31 GMT Set-Cookie: - - BrowserId=tqEKUTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:42 + - BrowserId=VB-sjX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7233/5000000 + - api-usage=244/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwnhAAC"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBf7AAE"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:43 GMT + - Thu, 09 Nov 2023 19:22:31 GMT Set-Cookie: - - BrowserId=tt0ptTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:43 + - BrowserId=VCzL5H81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7232/5000000 + - api-usage=245/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NeubLAAR" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1YAAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NeubLAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1YAAV","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"stripe_invoice_final_due_amount@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:43 GMT + - Thu, 09 Nov 2023 19:22:31 GMT Set-Cookie: - - BrowserId=tzBSJjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:43 + - BrowserId=VEwTw381Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7234/5000000 + - api-usage=248/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHYtOAAW" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY99HAAT" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHYtOAAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY99HAAT","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000NeubLAAR","SBQQ__PrimaryContact__c":"0037e00001jHYtOAAW","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1YAAV","SBQQ__PrimaryContact__c":"0036s00000WY99HAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:45 GMT + - Thu, 09 Nov 2023 19:22:32 GMT Set-Cookie: - - BrowserId=uBB5IzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:45 + - BrowserId=VHKGy381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7235/5000000 + - api-usage=248/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJnGAAX","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DskAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:46 GMT + - Thu, 09 Nov 2023 19:22:32 GMT Set-Cookie: - - BrowserId=uLT2TjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:46 + - BrowserId=VLz-CX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7233/5000000 + - api-usage=250/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJnGAAX + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DskAAE body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:47 GMT + - Thu, 09 Nov 2023 19:22:32 GMT Set-Cookie: - - BrowserId=uTxPEzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:47 + - BrowserId=VMnO6X81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"Id\":\"a0z7e00000BDJnGAAX\",\"Name\":\"Q-00882\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwnhAAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"Id\":\"a0z6s0000016DskAAE\",\"Name\":\"Q-00199\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeubLAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"Id\":\"0017e00001iZwnhAAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeubLAAR\"},\"Id\":\"0067e00000NeubLAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1YAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"Id\":\"0016s00000fzBf7AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"Id\":\"0066s00000CfE1YAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnPwAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qeAAA body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:48 GMT + - Thu, 09 Nov 2023 19:22:33 GMT Set-Cookie: - - BrowserId=uc7KiDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:48 + - BrowserId=VSspFH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK\"},\"Id\":\"01t7e000009AnPwAAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"Id\":\"01t6s000004g3qeAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6WAAR\"},\"Product2Id\":\"01t7e000009AnPwAAK\",\"Id\":\"01u7e00000Isi6WAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyRGAA0\"},\"Product2Id\":\"01t6s000004g3qeAAA\",\"Id\":\"01u6s000006MyRGAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"Id\":\"a0z7e00000BDJnGAAX\",\"Name\":\"Q-00882\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwnhAAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"Id\":\"a0z6s0000016DskAAE\",\"Name\":\"Q-00199\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeubLAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"Id\":\"0017e00001iZwnhAAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeubLAAR\"},\"Id\":\"0067e00000NeubLAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\"},\"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/01t7e000009AnPwAAK\"},\"Id\":\"01t7e000009AnPwAAK\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1YAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"Id\":\"0016s00000fzBf7AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"Id\":\"0066s00000CfE1YAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"Id\":\"01t6s000004g3qeAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6WAAR\"},\"Product2Id\":\"01t7e000009AnPwAAK\",\"Id\":\"01u7e00000Isi6WAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRGAA0\"},\"Product2Id\":\"01t6s000004g3qeAAA\",\"Id\":\"01u6s000006MyRGAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:48 GMT + - Thu, 09 Nov 2023 19:22:33 GMT Set-Cookie: - - BrowserId=ukzVBjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:48 + - BrowserId=VXSN-381Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,30 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeubLAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\",\"Id\":\"0067e00000NeubLAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwnhAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00882\",\"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\":\"0017e00001iZwnhAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeubLAAR\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPwAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK\"},\"Id\":\"01t7e000009AnPwAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6WAAR\"},\"Product2Id\":\"01t7e000009AnPwAAK\",\"Id\":\"01u7e00000Isi6WAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6WAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"Id\":\"a0z6s0000016DskAAE\",\"Name\":\"Q-00199\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1YAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"Id\":\"0016s00000fzBf7AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"Id\":\"0066s00000CfE1YAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\"},\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DskAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qeAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRGAA0\",\"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-0001684\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"Id\":\"01t6s000004g3qeAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeubLAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\",\"Id\":\"0067e00000NeubLAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwnhAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00882\",\"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\":\"0017e00001iZwnhAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeubLAAR\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPwAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK\"},\"Id\":\"01t7e000009AnPwAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6WAAR\"},\"Product2Id\":\"01t7e000009AnPwAAK\",\"Id\":\"01u7e00000Isi6WAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6WAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"Id\":\"a0z6s0000016DskAAE\",\"Name\":\"Q-00199\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1YAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"Id\":\"0016s00000fzBf7AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"Id\":\"0066s00000CfE1YAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\"},\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DskAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qeAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRGAA0\",\"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-0001684\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"Id\":\"01t6s000004g3qeAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -671,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:51 GMT + - Thu, 09 Nov 2023 19:22:35 GMT Set-Cookie: - - BrowserId=u9xN-DCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:51 + - BrowserId=ViILeX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -694,26 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"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/0067e00000NeubLAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\",\"Id\":\"0067e00000NeubLAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwnhAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00882\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwnhAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeubLAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnGAAX\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6WAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPwAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"Id\":\"a0z6s0000016DskAAE\",\"Name\":\"Q-00199\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1YAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"Id\":\"0016s00000fzBf7AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"Id\":\"0066s00000CfE1YAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\"},\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DskAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qeAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRGAA0\",\"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-0001685\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"Id\":\"01t6s000004g3qeAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"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/0067e00000NeubLAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\",\"Id\":\"0067e00000NeubLAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwnhAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00882\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwnhAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeubLAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnGAAX\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6WAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPwAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"Id\":\"a0z6s0000016DskAAE\",\"Name\":\"Q-00199\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1YAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"Id\":\"0016s00000fzBf7AAE\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"Id\":\"0066s00000CfE1YAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\"},\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DskAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qeAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRGAA0\",\"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-0001685\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"Id\":\"01t6s000004g3qeAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:53 GMT + - Thu, 09 Nov 2023 19:22:35 GMT Set-Cookie: - - BrowserId=vUuVxDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:53 + - BrowserId=VrSHzn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,17 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX\"},\"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/0067e00000NeubLAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnGAAX\",\"AccountId\":\"0017e00001iZwnhAAC\",\"Id\":\"0067e00000NeubLAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwnhAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00882\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwnhAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeubLAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnGAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnGAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhOAAU\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnGAAX\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6WAAR\",\"Id\":\"a0v7e000008xWhOAAU\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPwAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DskAAE\",\"AccountId\":\"0016s00000fzBf7AAE\",\"Id\":\"0066s00000CfE1YAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBf7AAE\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00199\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBf7AAE\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1YAAV\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DskAAE\",\"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\":\"a0z6s0000016DskAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldGAAQ\"},\"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-11-09 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\":\"a0z6s0000016DskAAE\",\"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\":\"a0v6s000000tldGAAQ\",\"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-0001685\",\"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\":\"01u6s000006MyRGAA0\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qeAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qeAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qeAAA\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -785,12 +786,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:54 GMT + - Thu, 09 Nov 2023 19:22:36 GMT Set-Cookie: - - BrowserId=vb2RCzCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:54 + - BrowserId=VuXQ6X81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -803,11 +804,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7235/5000000 + - api-usage=254/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -924,7 +925,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -935,14 +936,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1110,7 +1109,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 @@ -1126,7 +1126,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1144,9 +1146,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1290,9 +1291,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1414,9 +1415,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 @@ -1461,13 +1471,14 @@ http_interactions: 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":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 + 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":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 @@ -1703,7 +1714,8 @@ http_interactions: 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":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 + 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 @@ -1889,7 +1901,8 @@ http_interactions: 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":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 + 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 @@ -1900,7 +1913,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -1972,7 +1990,8 @@ http_interactions: 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":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 + 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 @@ -2018,7 +2037,8 @@ http_interactions: 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":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 + 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 @@ -2078,7 +2098,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2103,7 +2123,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2159,10 +2190,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE body: encoding: US-ASCII string: '' @@ -2181,12 +2212,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:55 GMT + - Thu, 09 Nov 2023 19:22:36 GMT Set-Cookie: - - BrowserId=vmy9nDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:55 + - BrowserId=VycfjX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2199,9 +2230,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7237/5000000 + - api-usage=255/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:54 GMT + - Thu, 09 Nov 2023 19:22:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2210,15 +2241,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX"},"Id":"a0z7e00000BDJnGAAX","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00882","CreatedDate":"2023-08-01T19:00:45.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:54.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:00:54.000+0000","LastReferencedDate":"2023-08-01T19:00:54.000+0000","SBQQ__Account__c":"0017e00001iZwnhAAC","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T19:00:54.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":"0067e00000NeubLAAR","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHYtOAAW","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE"},"Id":"a0z6s0000016DskAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00199","CreatedDate":"2023-11-09T19:22:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:36.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:36.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:22:36.000+0000","LastReferencedDate":"2023-11-09T19:22:36.000+0000","SBQQ__Account__c":"0016s00000fzBf7AAE","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:22:36.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":"0066s00000CfE1YAAV","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY99HAAT","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJnGAAX%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DskAAE%27 body: encoding: US-ASCII string: '' @@ -2237,12 +2268,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:56 GMT + - Thu, 09 Nov 2023 19:22:36 GMT Set-Cookie: - - BrowserId=vra-qzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:56 + - BrowserId=VzeaDH81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2255,7 +2286,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7234/5000000 + - api-usage=250/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2264,11 +2295,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhOAAU"},"Id":"a0v7e000008xWhOAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldGAAQ"},"Id":"a0v6s000000tldGAAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhOAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldGAAQ body: encoding: US-ASCII string: '' @@ -2287,12 +2318,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:00:56 GMT + - Thu, 09 Nov 2023 19:22:36 GMT Set-Cookie: - - BrowserId=vu2s0TCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:56 + - BrowserId=V0cDc381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2305,9 +2336,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7233/5000000 + - api-usage=245/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:54 GMT + - Thu, 09 Nov 2023 19:22:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2316,14 +2347,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhOAAU"},"Id":"a0v7e000008xWhOAAU","IsDeleted":false,"Name":"QL-0001743","CreatedDate":"2023-08-01T19:00:54.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:54.000+0000","SBQQ__Quote__c":"a0z7e00000BDJnGAAX","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6WAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPwAAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldGAAQ"},"Id":"a0v6s000000tldGAAQ","IsDeleted":false,"Name":"QL-0001686","CreatedDate":"2023-11-09T19:22:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:36.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:36.000+0000","SBQQ__Quote__c":"a0z6s0000016DskAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRGAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qeAAA","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"25% off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' @@ -2344,12 +2375,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:57 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Set-Cookie: - - BrowserId=vzdfwTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:57 + - BrowserId=V17SA381Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2362,9 +2393,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7229/5000000 + - api-usage=252/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsREAW" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHoEAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2373,11 +2404,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsREAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHoEAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$30 off coupon","Amount_Off__c":30,"Duration__c":"once"}' @@ -2398,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:57 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Set-Cookie: - - BrowserId=v3uU_DCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:57 + - BrowserId=V3q9-381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2416,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7233/5000000 + - api-usage=255/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsWEAW" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHtEAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2427,14 +2458,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsWEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHtEAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhOAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEsREAW"}' + string: '{"Quote_Line__c":"a0v6s000000tldGAAQ","Quote_Stripe_Coupon__c":"a1R6s000000uvHoEAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2452,12 +2483,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:58 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Set-Cookie: - - BrowserId=v8RdZTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:58 + - BrowserId=V4tfZX81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2470,9 +2501,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7235/5000000 + - api-usage=251/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVwBEAW" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5aEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2481,14 +2512,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVwBEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5aEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhOAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEsWEAW"}' + string: '{"Quote_Line__c":"a0v6s000000tldGAAQ","Quote_Stripe_Coupon__c":"a1R6s000000uvHtEAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2506,12 +2537,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:00:58 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Set-Cookie: - - BrowserId=wAKfVDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:58 + - BrowserId=V52IDn81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2524,9 +2555,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7238/5000000 + - api-usage=252/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVvfEAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5fEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2535,11 +2566,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVvfEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5fEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2560,12 +2591,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:00:58 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Set-Cookie: - - BrowserId=wFDmAjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:00:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:00:58 + - BrowserId=V7Ca6X81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2580,14 +2611,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7230/5000000 + - api-usage=251/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2606,12 +2637,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:01 GMT + - Thu, 09 Nov 2023 19:22:38 GMT Set-Cookie: - - BrowserId=waMIqjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:01 + - BrowserId=WGxJ1381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2624,7 +2655,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7236/5000000 + - api-usage=253/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2633,12 +2664,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6YAAU"},"Id":"8017e000000nQ6YAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwnhAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeubLAAR","EffectiveDate":"2023-08-01","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":"00000973","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:00.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":"a0z7e00000BDJnGAAX","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXy4AAG"},"Id":"8016s000001FXy4AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBf7AAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1YAAV","EffectiveDate":"2023-11-09","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":"00000270","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:38.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:38.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":"a0z6s0000016DskAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2659,12 +2690,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:01 GMT + - Thu, 09 Nov 2023 19:22:38 GMT Set-Cookie: - - BrowserId=wd481DCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:01 + - BrowserId=WHvaI381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2679,14 +2710,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7234/5000000 + - api-usage=246/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG body: encoding: US-ASCII string: '' @@ -2705,12 +2736,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:02 GMT + - Thu, 09 Nov 2023 19:22:39 GMT Set-Cookie: - - BrowserId=wn-tWjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:02 + - BrowserId=WNGbvn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2723,9 +2754,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7231/5000000 + - api-usage=256/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:01 GMT + - Thu, 09 Nov 2023 19:22:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2734,12 +2765,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU"},"Id":"8017e000000nQ6YAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwnhAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeubLAAR","EffectiveDate":"2023-08-01","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-01T19:01:01.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000973","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:01.000+0000","LastViewedDate":"2023-08-01T19:01:01.000+0000","LastReferencedDate":"2023-08-01T19:01: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":"a0z7e00000BDJnGAAX","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG"},"Id":"8016s000001FXy4AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBf7AAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1YAAV","EffectiveDate":"2023-11-09","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-11-09T19:22:39.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000270","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:39.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:39.000+0000","LastViewedDate":"2023-11-09T19:22:38.000+0000","LastReferencedDate":"2023-11-09T19:22:38.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":"a0z6s0000016DskAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG body: encoding: US-ASCII string: '' @@ -2758,12 +2790,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:02 GMT + - Thu, 09 Nov 2023 19:22:40 GMT Set-Cookie: - - BrowserId=wrjmBjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:02 + - BrowserId=WRzVIH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2776,9 +2808,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7236/5000000 + - api-usage=247/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:01 GMT + - Thu, 09 Nov 2023 19:22:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2787,15 +2819,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU"},"Id":"8017e000000nQ6YAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwnhAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeubLAAR","EffectiveDate":"2023-08-01","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-01T19:01:01.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000973","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:01.000+0000","LastViewedDate":"2023-08-01T19:01:02.000+0000","LastReferencedDate":"2023-08-01T19:01:02.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":"a0z7e00000BDJnGAAX","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG"},"Id":"8016s000001FXy4AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBf7AAE","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1YAAV","EffectiveDate":"2023-11-09","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-11-09T19:22:39.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000270","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:39.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:39.000+0000","LastViewedDate":"2023-11-09T19:22:39.000+0000","LastReferencedDate":"2023-11-09T19:22:39.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z6s0000016DskAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6YAAU"]}' + string: '{"order_ids":["8016s000001FXy4AAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2813,12 +2846,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:03 GMT + - Thu, 09 Nov 2023 19:22:40 GMT Set-Cookie: - - BrowserId=wvmX1zCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:03 + - BrowserId=WTnTG381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2838,26 +2871,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHYtOAAW"},"Id":"0037e00001jHYtOAAW","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"stripe_invoice_final_due_amount@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:44.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:44.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:44.000+0000","LastViewedDate":"2023-08-01T19:00:44.000+0000","LastReferencedDate":"2023-08-01T19:00:44.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHYtOAAW","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeubLAAR"},"Id":"0067e00000NeubLAAR","IsDeleted":false,"AccountId":"0017e00001iZwnhAAC","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:43.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:45.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:45.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T19:00:43.000+0000","LastReferencedDate":"2023-08-01T19:00:43.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJnGAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC"},"Id":"0017e00001iZwnhAAC","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwnhAAC","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:40.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:40.000+0000","LastViewedDate":"2023-08-01T19:00:40.000+0000","LastReferencedDate":"2023-08-01T19:00:40.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":["0017e00001iZwnhAAC"],"Opportunities":["0067e00000NeubLAAR"],"Contacts":["0037e00001jHYtOAAW"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHYtOAAW","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":"0067e00000NeubLAAR","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T19:00:59.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY99HAAT"},"Id":"0036s00000WY99HAAT","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"stripe_invoice_final_due_amount@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:32.000+0000","LastViewedDate":"2023-11-09T19:22:32.000+0000","LastReferencedDate":"2023-11-09T19:22:32.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY99HAAT","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV"},"Id":"0066s00000CfE1YAAV","IsDeleted":false,"AccountId":"0016s00000fzBf7AAE","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:32.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:22:31.000+0000","LastReferencedDate":"2023-11-09T19:22:31.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DskAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBf7AAE"},"Id":"0016s00000fzBf7AAE","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBf7AAE","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:31.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:31.000+0000","LastViewedDate":"2023-11-09T19:22:31.000+0000","LastReferencedDate":"2023-11-09T19:22:31.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":["0016s00000fzBf7AAE"],"Opportunities":["0066s00000CfE1YAAV"],"Contacts":["0036s00000WY99HAAT"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY99HAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1YAAV","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:22:37.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwnhAAC","LastReferencedDate":"2023-08-01T19:00:58.000+0000","LastViewedDate":"2023-08-01T19:00:58.000+0000","SystemModstamp":"2023-08-01T19:00:59.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:59.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:45.000+0000","Name":"Q-00882","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJnGAAX","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnGAAX","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK"},"Id":"01t7e000009AnPwAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:00:41.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:41.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:42.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBf7AAE","LastReferencedDate":"2023-11-09T19:22:37.000+0000","LastViewedDate":"2023-11-09T19:22:37.000+0000","SystemModstamp":"2023-11-09T19:22:37.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:37.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:32.000+0000","Name":"Q-00199","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DskAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DskAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qeAAA"},"Id":"01t6s000004g3qeAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:22:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:31.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:31.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/01u7e00000Isi6WAAR"},"Id":"01u7e00000Isi6WAAR","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPwAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T19:00:42.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:42.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:42.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/a0v7e000008xWhOAAU"},"Id":"a0v7e000008xWhOAAU","IsDeleted":false,"Name":"QL-0001743","CreatedDate":"2023-08-01T19:00:54.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:54.000+0000","SBQQ__Quote__c":"a0z7e00000BDJnGAAX","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":"01u7e00000Isi6WAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPwAAK","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-01","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-01 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":["01t7e000009AnPwAAK"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWhOAAU","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":"0000000966","SystemModstamp":"2023-08-01T19:01:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:01.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:00.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6WAAR","OrderId":"8017e000000nQ6YAAU","IsDeleted":false,"Product2Id":"01t7e000009AnPwAAK","Id":"8027e000001bPiJAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPiJAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NeubLAAR"],"Accounts":["0017e00001iZwnhAAC"],"OrderItems":["8027e000001bPiJAAU"],"Quotes":["a0z7e00000BDJnGAAX"],"Opportunity":{"Id":"0067e00000NeubLAAR","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeubLAAR","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":"a0z7e00000BDJnGAAX","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T19:01:03.000+0000","LastViewedDate":"2023-08-01T19:01:03.000+0000","SystemModstamp":"2023-08-01T19:01:01.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:01.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:00.000+0000","TotalAmount":1440.00,"OrderNumber":"00000973","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T19:01:01.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000NeubLAAR","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwnhAAC","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6YAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRGAA0"},"Id":"01u6s000006MyRGAA0","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qeAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:22:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:31.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:31.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldGAAQ"},"Id":"a0v6s000000tldGAAQ","IsDeleted":false,"Name":"QL-0001686","CreatedDate":"2023-11-09T19:22:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:36.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:36.000+0000","SBQQ__Quote__c":"a0z6s0000016DskAAE","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":"01u6s000006MyRGAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qeAAA","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-11-09","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-11-09 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":["01t6s000004g3qeAAA"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tldGAAQ","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":"0000000499","SystemModstamp":"2023-11-09T19:22:39.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:39.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:38.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRGAA0","OrderId":"8016s000001FXy4AAG","IsDeleted":false,"Product2Id":"01t6s000004g3qeAAA","Id":"8026s0000014MvTAAU","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvTAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1YAAV"],"Accounts":["0016s00000fzBf7AAE"],"OrderItems":["8026s0000014MvTAAU"],"Quotes":["a0z6s0000016DskAAE"],"Opportunity":{"Id":"0066s00000CfE1YAAV","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1YAAV","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":"a0z6s0000016DskAAE","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:22:40.000+0000","LastViewedDate":"2023-11-09T19:22:40.000+0000","SystemModstamp":"2023-11-09T19:22:39.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:39.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:38.000+0000","TotalAmount":1440.00,"OrderNumber":"00000270","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:22:39.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1YAAV","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBf7AAE","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXy4AAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXy4AAG","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 @@ -2874,10 +2908,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6YAAU%27%0A + uri: https://connect-saas-89822-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%278016s000001FXy4AAG%27%0A body: encoding: US-ASCII string: '' @@ -2896,12 +2930,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:05 GMT + - Thu, 09 Nov 2023 19:22:41 GMT Set-Cookie: - - BrowserId=xCPnXjCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:05 + - BrowserId=WdrOa381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2914,7 +2948,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7244/5000000 + - api-usage=257/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2923,11 +2957,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU"},"Type":"New","OpportunityId":"0067e00000NeubLAAR","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeubLAAR"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG"},"Type":"New","OpportunityId":"0066s00000CfE1YAAV","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1YAAV"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6YAAU%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXy4AAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2946,12 +2980,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:05 GMT + - Thu, 09 Nov 2023 19:22:41 GMT Set-Cookie: - - BrowserId=xF4JyDCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:05 + - BrowserId=Wed4aX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2964,7 +2998,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7245/5000000 + - api-usage=256/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2973,14 +3007,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU"},"Id":"8017e000000nQ6YAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG"},"Id":"8016s000001FXy4AAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZwnhAAC&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZwnhAAC + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBf7AAE&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBf7AAE headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2989,13 +3023,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - fe745893-fb5e-46df-b795-99940acd89ba + - 382a9671-ae8a-4b3c-a8c3-1299be92d076 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3010,37 +3044,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:06 GMT + - Thu, 09 Nov 2023 19:22:41 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - fe745893-fb5e-46df-b795-99940acd89ba + - 382a9671-ae8a-4b3c-a8c3-1299be92d076 Original-Request: - - req_u1iIYWgLVfeF4D + - req_W54um7fkF5WQ1B Request-Id: - - req_u1iIYWgLVfeF4D + - req_W54um7fkF5WQ1B 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: @@ -3049,11 +3090,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON84HgRioY8GjW", + "id": "cus_Oyb0a0LQOxIUyw", "object": "customer", "address": null, "balance": 0, - "created": 1690916466, + "created": 1699557761, "currency": null, "default_currency": null, "default_source": null, @@ -3061,7 +3102,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "0B971EE1", + "invoice_prefix": "45643C2E", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3070,10 +3111,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwnhAAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwnhAAC" + "salesforce_account_id": "0016s00000fzBf7AAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBf7AAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3081,13 +3122,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBf7AAE body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON84HgRioY8GjW"}' + string: '{"Stripe_ID__c":"cus_Oyb0a0LQOxIUyw"}' headers: User-Agent: - Faraday v2.4.0 @@ -3105,12 +3146,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:06 GMT + - Thu, 09 Nov 2023 19:22:41 GMT Set-Cookie: - - BrowserId=xNM6qDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:06 + - BrowserId=Wkj5VH81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3125,17 +3166,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7248/5000000 + - api-usage=252/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnPwAAK&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnPwAAK + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qeAAA&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qeAAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3144,15 +3185,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_u1iIYWgLVfeF4D","request_duration_ms":330}}' + - '{"last_request_metrics":{"request_id":"req_W54um7fkF5WQ1B","request_duration_ms":465}}' Idempotency-Key: - - 71fcf01c-e9e0-4cc6-a228-5fc8b7ee0f6b + - 533940d2-9644-46c0-b7e1-78eae3f6f602 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3167,37 +3208,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:07 GMT + - Thu, 09 Nov 2023 19:22:42 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 71fcf01c-e9e0-4cc6-a228-5fc8b7ee0f6b + - 533940d2-9644-46c0-b7e1-78eae3f6f602 Original-Request: - - req_xr72E7Mxl9tLFT + - req_7UrVRbLq5S9HNZ Request-Id: - - req_xr72E7Mxl9tLFT + - req_7UrVRbLq5S9HNZ 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: @@ -3206,39 +3254,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON84Smuj7fvFC0", + "id": "prod_Oyb05ugVQSfZVb", "object": "product", "active": true, "attributes": [], - "created": 1690916466, + "created": 1699557762, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnPwAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnPwAAK" + "salesforce_product2_id": "01t6s000004g3qeAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qeAAA" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-92", + "sku": "rest-product2--2023-11-09-000000-utc-6", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916466, + "updated": 1699557762, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qeAAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON84Smuj7fvFC0"}' + string: '{"Stripe_ID__c":"prod_Oyb05ugVQSfZVb"}' headers: User-Agent: - Faraday v2.4.0 @@ -3256,12 +3305,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:07 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Set-Cookie: - - BrowserId=xU3BmzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:07 + - BrowserId=WpI3Jn81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3276,14 +3325,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7245/5000000 + - api-usage=252/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPwAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qeAAA%27%0A body: encoding: US-ASCII string: '' @@ -3302,12 +3351,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:07 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Set-Cookie: - - BrowserId=xau_hTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:07 + - BrowserId=WrHNTX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3320,7 +3369,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7249/5000000 + - api-usage=265/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3330,10 +3379,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPwAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qeAAA%27%0A body: encoding: US-ASCII string: '' @@ -3352,12 +3401,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:08 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Set-Cookie: - - BrowserId=xeL8wzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:08 + - BrowserId=Wr4ppn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3370,7 +3419,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7242/5000000 + - api-usage=270/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3380,10 +3429,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qeAAA body: encoding: US-ASCII string: '' @@ -3402,12 +3451,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:08 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Set-Cookie: - - BrowserId=xiLrrTCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:08 + - BrowserId=WsoQQn81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3420,9 +3469,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7246/5000000 + - api-usage=266/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:07 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3431,15 +3480,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPwAAK"},"Id":"01t7e000009AnPwAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:00:41.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:07.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:07.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/01t6s000004g3qeAAA"},"Id":"01t6s000004g3qeAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:22:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:42.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_ON84Smuj7fvFC0","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON84Smuj7fvFC0"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_Oyb05ugVQSfZVb","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_Oyb05ugVQSfZVb"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiJAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvTAAU%27%0A body: encoding: US-ASCII string: '' @@ -3458,12 +3507,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:09 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Set-Cookie: - - BrowserId=xnuTPTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:09 + - BrowserId=Wt1xJ381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3476,7 +3525,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7250/5000000 + - api-usage=267/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3486,10 +3535,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiJAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvTAAU%27%0A body: encoding: US-ASCII string: '' @@ -3508,12 +3557,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:09 GMT + - Thu, 09 Nov 2023 19:22:43 GMT Set-Cookie: - - BrowserId=xrW1ZjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:09 + - BrowserId=Wu7WD381Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3526,7 +3575,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7252/5000000 + - api-usage=265/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3536,10 +3585,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPwAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qeAAA%27%0A body: encoding: US-ASCII string: '' @@ -3558,12 +3607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:10 GMT + - Thu, 09 Nov 2023 19:22:43 GMT Set-Cookie: - - BrowserId=xvGG3DCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:10 + - BrowserId=Wv_tKn81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3576,7 +3625,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7243/5000000 + - api-usage=265/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3586,13 +3635,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON84Smuj7fvFC0&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6WAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6WAAR + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_Oyb05ugVQSfZVb&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRGAA0&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRGAA0 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3600,16 +3649,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_xr72E7Mxl9tLFT","request_duration_ms":286}}' Idempotency-Key: - - 7f41ec55-fdd5-4a22-b3ef-00c136a7206b + - 27e8b357-ea5c-42ae-ab20-d4d125ce1eca 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3624,37 +3671,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:10 GMT + - Thu, 09 Nov 2023 19:22:43 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 7f41ec55-fdd5-4a22-b3ef-00c136a7206b + - 27e8b357-ea5c-42ae-ab20-d4d125ce1eca Original-Request: - - req_tp0jEvB7ZoyZAk + - req_Z4s40q85pziV9n Request-Id: - - req_tp0jEvB7ZoyZAk + - req_Z4s40q85pziV9n 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: @@ -3663,21 +3717,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNogIsgf92XbAOSVw1PnRz", + "id": "price_1OAdoNIsgf92XbAOqeERqIFe", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916470, + "created": 1699557763, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6WAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6WAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRGAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRGAA0" }, "nickname": null, - "product": "prod_ON84Smuj7fvFC0", + "product": "prod_Oyb05ugVQSfZVb", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3692,13 +3746,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6WAAR + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRGAA0 body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNogIsgf92XbAOSVw1PnRz"}' + string: '{"Stripe_ID__c":"price_1OAdoNIsgf92XbAOqeERqIFe"}' headers: User-Agent: - Faraday v2.4.0 @@ -3716,12 +3770,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:10 GMT + - Thu, 09 Nov 2023 19:22:43 GMT Set-Cookie: - - BrowserId=x1cmIDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:10 + - BrowserId=WzwMD381Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3736,14 +3790,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7237/5000000 + - api-usage=257/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPiJAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvTAAU%27 body: encoding: US-ASCII string: '' @@ -3762,12 +3816,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:11 GMT + - Thu, 09 Nov 2023 19:22:43 GMT Set-Cookie: - - BrowserId=x5jqBzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:11 + - BrowserId=W1Oyt381Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3780,7 +3834,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7250/5000000 + - api-usage=267/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3789,11 +3843,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPeEAI"},"Id":"a1N7e000002flPeEAI"},{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPfEAI"},"Id":"a1N7e000002flPfEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i0EAA"},"Id":"a1N6s00000113i0EAA"},{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i1EAA"},"Id":"a1N6s00000113i1EAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPeEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tldGAAQ%27 body: encoding: US-ASCII string: '' @@ -3812,12 +3866,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:11 GMT + - Thu, 09 Nov 2023 19:22:43 GMT Set-Cookie: - - BrowserId=x9mclzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:11 + - BrowserId=W2FHFX81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3830,9 +3884,59 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7251/5000000 + - api-usage=266/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5fEAC"},"Id":"a1P6s000001Bk5fEAC"},{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5aEAC"},"Id":"a1P6s000001Bk5aEAC"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i0EAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:22:43 GMT + Set-Cookie: + - BrowserId=W26Ns381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:43 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=270/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:02 GMT + - Thu, 09 Nov 2023 19:22:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3841,12 +3945,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPeEAI"},"Id":"a1N7e000002flPeEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0134","CreatedDate":"2023-08-01T19:01:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:02.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:02.000+0000","Amount_Off__c":30.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$30 - off coupon","Order_Item__c":"8027e000001bPiJAAU","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsWEAW","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i0EAA"},"Id":"a1N6s00000113i0EAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0010","CreatedDate":"2023-11-09T19:22:39.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:39.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:39.000+0000","Amount_Off__c":30.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$30 + off coupon","Order_Item__c":"8026s0000014MvTAAU","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHtEAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPfEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i1EAA body: encoding: US-ASCII string: '' @@ -3865,12 +3969,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:11 GMT + - Thu, 09 Nov 2023 19:22:44 GMT Set-Cookie: - - BrowserId=yA7c-zCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:11 + - BrowserId=W4AZ5X81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3883,9 +3987,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7244/5000000 + - api-usage=271/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:02 GMT + - Thu, 09 Nov 2023 19:22:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3894,12 +3998,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPfEAI"},"Id":"a1N7e000002flPfEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0135","CreatedDate":"2023-08-01T19:01:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:02.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:02.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bPiJAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsREAW","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i1EAA"},"Id":"a1N6s00000113i1EAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0011","CreatedDate":"2023-11-09T19:22:39.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:39.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:39.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014MvTAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHoEAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsWEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHtEAI body: encoding: US-ASCII string: '' @@ -3918,12 +4022,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:12 GMT + - Thu, 09 Nov 2023 19:22:44 GMT Set-Cookie: - - BrowserId=yEV9bTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:12 + - BrowserId=W42Gr381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3936,9 +4040,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7245/5000000 + - api-usage=271/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:57 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3947,15 +4051,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsWEAW"},"Id":"a1R7e000007JEsWEAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0115","CreatedDate":"2023-08-01T19:00:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:57.000+0000","Amount_Off__c":30.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$30 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHtEAI"},"Id":"a1R6s000000uvHtEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0009","CreatedDate":"2023-11-09T19:22:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:37.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:37.000+0000","Amount_Off__c":30.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$30 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2430+off+coupon&amount_off=3000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPeEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPeEAI¤cy=usd + string: name=%2430+off+coupon&amount_off=3000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113i0EAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113i0EAA¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3964,15 +4068,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_tp0jEvB7ZoyZAk","request_duration_ms":266}}' + - '{"last_request_metrics":{"request_id":"req_7UrVRbLq5S9HNZ","request_duration_ms":251}}' Idempotency-Key: - - 0abea4be-43ef-42e7-ac43-e140ed4971b6 + - facfbade-334e-4bd2-9ca7-dd7decace36f 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3987,37 +4091,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:12 GMT + - Thu, 09 Nov 2023 19:22:44 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 0abea4be-43ef-42e7-ac43-e140ed4971b6 + - facfbade-334e-4bd2-9ca7-dd7decace36f Original-Request: - - req_8obz4KFCdOK4Gq + - req_OJ9BJ9vMOWq5gp Request-Id: - - req_8obz4KFCdOK4Gq + - req_OJ9BJ9vMOWq5gp 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: @@ -4026,18 +4137,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "6JW4fIKf", + "id": "2i9rFIUY", "object": "coupon", "amount_off": 3000, - "created": 1690916472, + "created": 1699557764, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPeEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPeEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113i0EAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113i0EAA" }, "name": "$30 off coupon", "percent_off": null, @@ -4045,13 +4156,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPeEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i0EAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"6JW4fIKf"}' + string: '{"Stripe_ID__c":"2i9rFIUY"}' headers: User-Agent: - Faraday v2.4.0 @@ -4069,12 +4180,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:12 GMT + - Thu, 09 Nov 2023 19:22:44 GMT Set-Cookie: - - BrowserId=yKBH0TCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:12 + - BrowserId=W8Hd3n81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4089,14 +4200,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7253/5000000 + - api-usage=268/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -4115,12 +4226,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:13 GMT + - Thu, 09 Nov 2023 19:22:44 GMT Set-Cookie: - - BrowserId=yPnZ4jCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:13 + - BrowserId=W9ORHX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:44 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4133,11 +4244,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7252/5000000 + - api-usage=272/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4254,7 +4365,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4265,14 +4376,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4440,7 +4549,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 @@ -4456,7 +4566,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4474,9 +4586,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4620,9 +4731,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4744,9 +4855,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 @@ -4791,13 +4911,14 @@ http_interactions: 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":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 + 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":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 @@ -5033,7 +5154,8 @@ http_interactions: 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":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 + 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 @@ -5219,7 +5341,8 @@ http_interactions: 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":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 + 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 @@ -5230,7 +5353,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5302,7 +5430,8 @@ http_interactions: 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":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 + 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 @@ -5348,7 +5477,8 @@ http_interactions: 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":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 + 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 @@ -5408,7 +5538,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5433,7 +5563,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5489,13 +5630,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsWEAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHtEAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"6JW4fIKf"}' + string: '{"Stripe_ID__c":"2i9rFIUY"}' headers: User-Agent: - Faraday v2.4.0 @@ -5513,12 +5654,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:14 GMT + - Thu, 09 Nov 2023 19:22:45 GMT Set-Cookie: - - BrowserId=yYj50jCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:14 + - BrowserId=XBoPVX81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5533,14 +5674,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7247/5000000 + - api-usage=272/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5559,12 +5700,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:14 GMT + - Thu, 09 Nov 2023 19:22:45 GMT Set-Cookie: - - BrowserId=ycQuyjCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:14 + - BrowserId=XCjcUH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5577,11 +5718,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7247/5000000 + - api-usage=268/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5698,7 +5839,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5709,14 +5850,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5884,7 +6023,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 @@ -5900,7 +6040,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -5918,9 +6060,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -6064,9 +6205,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6188,9 +6329,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 @@ -6235,13 +6385,14 @@ http_interactions: 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":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 + 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":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 @@ -6477,7 +6628,8 @@ http_interactions: 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":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 + 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 @@ -6663,7 +6815,8 @@ http_interactions: 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":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 + 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 @@ -6674,7 +6827,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6746,7 +6904,8 @@ http_interactions: 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":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 + 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 @@ -6792,7 +6951,8 @@ http_interactions: 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":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 + 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 @@ -6852,7 +7012,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6877,7 +7037,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -6933,10 +7104,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsREAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHoEAI body: encoding: US-ASCII string: '' @@ -6955,12 +7126,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:15 GMT + - Thu, 09 Nov 2023 19:22:45 GMT Set-Cookie: - - BrowserId=yle8IjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:15 + - BrowserId=XGUh8381Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6973,9 +7144,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7254/5000000 + - api-usage=258/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:00:57 GMT + - Thu, 09 Nov 2023 19:22:37 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6984,15 +7155,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsREAW"},"Id":"a1R7e000007JEsREAW","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0114","CreatedDate":"2023-08-01T19:00:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:00:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:00:57.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHoEAI"},"Id":"a1R6s000000uvHoEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0008","CreatedDate":"2023-11-09T19:22:37.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:37.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:37.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPfEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPfEAI + string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113i1EAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113i1EAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7001,15 +7172,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_8obz4KFCdOK4Gq","request_duration_ms":230}}' + - '{"last_request_metrics":{"request_id":"req_OJ9BJ9vMOWq5gp","request_duration_ms":234}}' Idempotency-Key: - - 23839cec-8082-4344-98eb-bb8cd870010f + - 2b5d9249-2c9a-4d36-b674-ef604723c965 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7024,37 +7195,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:16 GMT + - Thu, 09 Nov 2023 19:22:45 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 23839cec-8082-4344-98eb-bb8cd870010f + - 2b5d9249-2c9a-4d36-b674-ef604723c965 Original-Request: - - req_pry6q8JR8IS0aY + - req_EDPKyhhljUwq9D Request-Id: - - req_pry6q8JR8IS0aY + - req_EDPKyhhljUwq9D 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: @@ -7063,18 +7241,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "w999PmZy", + "id": "Pk5CSk6A", "object": "coupon", "amount_off": null, - "created": 1690916476, + "created": 1699557765, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPfEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPfEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113i1EAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113i1EAA" }, "name": "25% off coupon", "percent_off": 25.0, @@ -7082,13 +7260,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPfEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i1EAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"w999PmZy"}' + string: '{"Stripe_ID__c":"Pk5CSk6A"}' headers: User-Agent: - Faraday v2.4.0 @@ -7106,12 +7284,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:16 GMT + - Thu, 09 Nov 2023 19:22:45 GMT Set-Cookie: - - BrowserId=yrnYyjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:16 + - BrowserId=XJRvgH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7126,17 +7304,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7238/5000000 + - api-usage=269/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsREAW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHoEAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"w999PmZy"}' + string: '{"Stripe_ID__c":"Pk5CSk6A"}' headers: User-Agent: - Faraday v2.4.0 @@ -7154,12 +7332,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:16 GMT + - Thu, 09 Nov 2023 19:22:45 GMT Set-Cookie: - - BrowserId=yvkEujCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:16 + - BrowserId=XKTDB381Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7174,34 +7352,22 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7239/5000000 + - api-usage=268/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNogIsgf92XbAOSVw1PnRz + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXy4AAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pry6q8JR8IS0aY","request_duration_ms":241}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -7211,75 +7377,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 19:01:17 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_DzJVOAm4LLQhGo - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:22:46 GMT + Set-Cookie: + - BrowserId=XLcSyH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:46 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=273/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNogIsgf92XbAOSVw1PnRz", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916470, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6WAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6WAAR" - }, - "nickname": null, - "product": "prod_ON84Smuj7fvFC0", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6YAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DskAAE%27 body: encoding: US-ASCII string: '' @@ -7298,12 +7428,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:17 GMT + - Thu, 09 Nov 2023 19:22:46 GMT Set-Cookie: - - BrowserId=y1OBJDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:17 + - BrowserId=XMRZJX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7316,7 +7446,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7251/5000000 + - api-usage=270/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7326,10 +7456,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON84HgRioY8GjW?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oyb0a0LQOxIUyw?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7341,13 +7471,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_DzJVOAm4LLQhGo","request_duration_ms":206}}' + - '{"last_request_metrics":{"request_id":"req_Z4s40q85pziV9n","request_duration_ms":262}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7362,31 +7492,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:17 GMT + - Thu, 09 Nov 2023 19:22:46 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_p0sba3SMBfh75i + - req_R1Hd79RmuizjGg Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7395,11 +7533,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON84HgRioY8GjW", + "id": "cus_Oyb0a0LQOxIUyw", "object": "customer", "address": null, "balance": 0, - "created": 1690916466, + "created": 1699557761, "currency": null, "default_currency": null, "default_source": null, @@ -7407,7 +7545,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "0B971EE1", + "invoice_prefix": "45643C2E", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7416,10 +7554,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwnhAAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwnhAAC" + "salesforce_account_id": "0016s00000fzBf7AAE", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBf7AAE" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7427,13 +7565,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdoNIsgf92XbAOqeERqIFe + 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_R1Hd79RmuizjGg","request_duration_ms":220}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:22:46 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_DGE0rxRF7eobh8 + 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_1OAdoNIsgf92XbAOqeERqIFe", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557763, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRGAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRGAA0" + }, + "nickname": null, + "product": "prod_Oyb05ugVQSfZVb", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6YAAU&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6YAAU&start_date=1690848000&customer=cus_ON84HgRioY8GjW&phases[0][items][0][price]=price_1NaNogIsgf92XbAOSVw1PnRz&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPiJAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPiJAAU&phases[0][items][0][discounts][0][coupon]=6JW4fIKf&phases[0][items][0][discounts][1][coupon]=w999PmZy&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6YAAU&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6YAAU + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXy4AAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXy4AAG&start_date=1699488000&customer=cus_Oyb0a0LQOxIUyw&phases[0][items][0][price]=price_1OAdoNIsgf92XbAOqeERqIFe&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvTAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvTAAU&phases[0][items][0][discounts][0][coupon]=2i9rFIUY&phases[0][items][0][discounts][1][coupon]=Pk5CSk6A&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXy4AAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXy4AAG headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7442,15 +7685,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_p0sba3SMBfh75i","request_duration_ms":211}}' + - '{"last_request_metrics":{"request_id":"req_EDPKyhhljUwq9D","request_duration_ms":224}}' Idempotency-Key: - - 7c7d60e7-27b0-4fcc-b97e-4eb6a2f2408f + - a888a9a2-c646-4764-85e6-364bc9ef3041 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7465,37 +7708,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:18 GMT + - Thu, 09 Nov 2023 19:22:47 GMT Content-Type: - application/json Content-Length: - - '2669' + - '2654' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 7c7d60e7-27b0-4fcc-b97e-4eb6a2f2408f + - a888a9a2-c646-4764-85e6-364bc9ef3041 Original-Request: - - req_pGwqjyUJnoVwAO + - req_scndvCtFCamcak Request-Id: - - req_pGwqjyUJnoVwAO + - req_scndvCtFCamcak 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: @@ -7504,17 +7755,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNooIsgf92XbAOpCusmUwP", + "id": "sub_sched_1OAdoQIsgf92XbAOyfCqIwwN", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916478, + "created": 1699557766, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON84HgRioY8GjW", + "customer": "cus_Oyb0a0LQOxIUyw", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7533,8 +7784,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6YAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6YAAU" + "salesforce_order_id": "8016s000001FXy4AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy4AAG" }, "phases": [ { @@ -7549,38 +7800,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "6JW4fIKf", + "coupon": "2i9rFIUY", "discount": null }, { - "coupon": "w999PmZy", + "coupon": "Pk5CSk6A", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiJAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiJAAU" + "salesforce_order_item_id": "8026s0000014MvTAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvTAAU" }, - "plan": "price_1NaNogIsgf92XbAOSVw1PnRz", - "price": "price_1NaNogIsgf92XbAOSVw1PnRz", + "plan": "price_1OAdoNIsgf92XbAOqeERqIFe", + "price": "price_1OAdoNIsgf92XbAOqeERqIFe", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6YAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6YAAU" + "salesforce_order_id": "8016s000001FXy4AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy4AAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7590,16 +7841,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNooIsgf92XbAOOrdK3Flk", + "subscription": "sub_1OAdoQIsgf92XbAORJ0i6bwD", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6YAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy4AAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNooIsgf92XbAOpCusmUwP"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdoQIsgf92XbAOyfCqIwwN"}' headers: User-Agent: - Faraday v2.4.0 @@ -7617,12 +7868,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:18 GMT + - Thu, 09 Nov 2023 19:22:47 GMT Set-Cookie: - - BrowserId=zCb9YjCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:18 + - BrowserId=XXTlFn81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7637,18 +7888,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7248/5000000 + - api-usage=292/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6YAAU-8017e000000nQ6YAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXy4AAG-8016s000001FXy4AAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6YAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6YAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNooIsgf92XbAOpCusmUwP","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXy4AAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXy4AAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdoQIsgf92XbAOyfCqIwwN","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_scndvCtFCamcak"}' headers: User-Agent: - Faraday v2.4.0 @@ -7666,12 +7917,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:19 GMT + - Thu, 09 Nov 2023 19:22:47 GMT Set-Cookie: - - BrowserId=zIOcPzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:19 + - BrowserId=XZq70X81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7684,20 +7935,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7255/5000000 + - api-usage=295/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrLuEAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxcrEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrLuEAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000KxcrEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNooIsgf92XbAOpCusmUwP?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdoQIsgf92XbAOyfCqIwwN?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7709,13 +7960,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pGwqjyUJnoVwAO","request_duration_ms":755}}' + - '{"last_request_metrics":{"request_id":"req_DGE0rxRF7eobh8","request_duration_ms":199}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7730,31 +7981,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:19 GMT + - Thu, 09 Nov 2023 19:22:47 GMT Content-Type: - application/json Content-Length: - - '3749' + - '3729' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_4ufpZBqRkyVLd5 + - req_BPtuwQ9O3YEx3g Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7763,17 +8022,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNooIsgf92XbAOpCusmUwP", + "id": "sub_sched_1OAdoQIsgf92XbAOyfCqIwwN", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916478, + "created": 1699557766, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON84HgRioY8GjW", + "customer": "cus_Oyb0a0LQOxIUyw", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7792,8 +8051,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6YAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6YAAU" + "salesforce_order_id": "8016s000001FXy4AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy4AAG" }, "phases": [ { @@ -7808,42 +8067,42 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "6JW4fIKf", + "coupon": "2i9rFIUY", "discount": null }, { - "coupon": "w999PmZy", + "coupon": "Pk5CSk6A", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiJAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiJAAU" + "salesforce_order_item_id": "8026s0000014MvTAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvTAAU" }, - "plan": "price_1NaNogIsgf92XbAOSVw1PnRz", + "plan": "price_1OAdoNIsgf92XbAOqeERqIFe", "price": { - "id": "price_1NaNogIsgf92XbAOSVw1PnRz", + "id": "price_1OAdoNIsgf92XbAOqeERqIFe", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916470, + "created": 1699557763, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6WAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6WAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRGAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRGAA0" }, "nickname": null, - "product": "prod_ON84Smuj7fvFC0", + "product": "prod_Oyb05ugVQSfZVb", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7863,12 +8122,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6YAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6YAAU" + "salesforce_order_id": "8016s000001FXy4AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy4AAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7878,13 +8137,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNooIsgf92XbAOOrdK3Flk", + "subscription": "sub_1OAdoQIsgf92XbAORJ0i6bwD", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBf7AAE body: encoding: US-ASCII string: '' @@ -7903,12 +8162,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:20 GMT + - Thu, 09 Nov 2023 19:22:47 GMT Set-Cookie: - - BrowserId=zOW5wzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:20 + - BrowserId=XdPNVX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7921,11 +8180,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7253/5000000 + - api-usage=285/5000000 Etag: - '"G1Nv+Sb4ET8yi4FNWG9QT/ZcEmJXKJ6PxWEsxnJOmzw=--gzip"' Last-Modified: - - Tue, 01 Aug 2023 19:01:06 GMT + - Thu, 09 Nov 2023 19:22:42 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7934,13 +8193,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwnhAAC"},"Id":"0017e00001iZwnhAAC","IsDeleted":false,"MasterRecordId":null,"Name":"REST - Account 2023-08-01 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0017e00001iZwnhAAC","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:00:40.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:06.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:06.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:01:06.000+0000","LastReferencedDate":"2023-08-01T19:01:06.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_ON84HgRioY8GjW","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ON84HgRioY8GjW"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0016s00000fzBf7AAE"},"Id":"0016s00000fzBf7AAE","IsDeleted":false,"MasterRecordId":null,"Name":"REST + Account 2023-11-09 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0016s00000fzBf7AAE","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:31.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:42.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:42.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:22:41.000+0000","LastReferencedDate":"2023-11-09T19:22:41.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_Oyb0a0LQOxIUyw","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_Oyb0a0LQOxIUyw"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/invoices?customer=cus_ON84HgRioY8GjW + uri: https://api.stripe.com/v1/invoices?customer=cus_Oyb0a0LQOxIUyw body: encoding: US-ASCII string: '' @@ -7952,13 +8211,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4ufpZBqRkyVLd5","request_duration_ms":198}}' + - '{"last_request_metrics":{"request_id":"req_BPtuwQ9O3YEx3g","request_duration_ms":216}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7973,31 +8232,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:20 GMT + - Thu, 09 Nov 2023 19:22:48 GMT Content-Type: - application/json Content-Length: - - '6340' + - '6568' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Finvoices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_b0VukSFm3velKZ + - req_V3UzjEBSeUdEsi Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8009,7 +8275,7 @@ http_interactions: "object": "list", "data": [ { - "id": "in_1NaNooIsgf92XbAOLA2RjDu5", + "id": "in_1OAdoQIsgf92XbAOD9yP8jIJ", "object": "invoice", "account_country": "US", "account_name": "StripeForce Demo Account ", @@ -8030,13 +8296,13 @@ http_interactions: "billing_reason": "subscription_create", "charge": null, "collection_method": "charge_automatically", - "created": 1690916478, + "created": 1699557766, "currency": "usd", "custom_fields": null, - "customer": "cus_ON84HgRioY8GjW", + "customer": "cus_Oyb0a0LQOxIUyw", "customer_address": null, "customer_email": null, - "customer_name": "REST Account 2023-08-01 00:00:00 UTC", + "customer_name": "REST Account 2023-11-09 00:00:00 UTC", "customer_phone": null, "customer_shipping": null, "customer_tax_exempt": "none", @@ -8060,62 +8326,62 @@ http_interactions: "object": "list", "data": [ { - "id": "il_1NaNooIsgf92XbAONtAXqNy9", + "id": "il_1OAdoQIsgf92XbAO6IsZ7qvA", "object": "line_item", "amount": 6750, "amount_excluding_tax": 6750, "currency": "usd", - "description": "Time on REST Product2 2023-08-01 00:00:00 UTC (with discounts) from 01 Aug 2023 until 01 Sep 2023", + "description": "Time on REST Product2 2023-11-09 00:00:00 UTC (with discounts) from 09 Nov 2023 until 09 Dec 2023", "discount_amounts": [], "discountable": false, "discounts": [], - "invoice_item": "ii_1NaNooIsgf92XbAOonPdQoEL", + "invoice_item": "ii_1OAdoQIsgf92XbAOEWuo59He", "livemode": false, "metadata": {}, "period": { - "end": 1693526400, - "start": 1690848000 + "end": 1702080000, + "start": 1699488000 }, "plan": { - "id": "price_1NaNogIsgf92XbAOSVw1PnRz", + "id": "price_1OAdoNIsgf92XbAOqeERqIFe", "object": "plan", "active": true, "aggregate_usage": null, "amount": 12000, "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1690916470, + "created": 1699557763, "currency": "usd", "interval": "month", "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6WAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6WAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRGAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRGAA0" }, "nickname": null, - "product": "prod_ON84Smuj7fvFC0", + "product": "prod_Oyb05ugVQSfZVb", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NaNogIsgf92XbAOSVw1PnRz", + "id": "price_1OAdoNIsgf92XbAOqeERqIFe", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916470, + "created": 1699557763, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6WAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6WAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyRGAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRGAA0" }, "nickname": null, - "product": "prod_ON84Smuj7fvFC0", + "product": "prod_Oyb05ugVQSfZVb", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8136,8 +8402,8 @@ http_interactions: }, "quantity": 1, "rendering": null, - "subscription": "sub_1NaNooIsgf92XbAOOrdK3Flk", - "subscription_item": "si_ON8412LzSVJoV9", + "subscription": "sub_1OAdoQIsgf92XbAORJ0i6bwD", + "subscription_item": "si_Oyb0pAdZ4xT6R2", "tax_amounts": [], "tax_rates": [], "type": "invoiceitem", @@ -8146,11 +8412,11 @@ http_interactions: ], "has_more": false, "total_count": 1, - "url": "/v1/invoices/in_1NaNooIsgf92XbAOLA2RjDu5/lines" + "url": "/v1/invoices/in_1OAdoQIsgf92XbAOD9yP8jIJ/lines" }, "livemode": false, "metadata": {}, - "next_payment_attempt": 1690920078, + "next_payment_attempt": 1699561366, "number": null, "on_behalf_of": null, "paid": false, @@ -8161,8 +8427,8 @@ http_interactions: "payment_method_options": null, "payment_method_types": null }, - "period_end": 1690916477, - "period_start": 1690916477, + "period_end": 1699557766, + "period_start": 1699557766, "post_payment_credit_notes_amount": 0, "pre_payment_credit_notes_amount": 0, "quote": null, @@ -8180,7 +8446,13 @@ http_interactions: "paid_at": null, "voided_at": null }, - "subscription": "sub_1NaNooIsgf92XbAOOrdK3Flk", + "subscription": "sub_1OAdoQIsgf92XbAORJ0i6bwD", + "subscription_details": { + "metadata": { + "salesforce_order_id": "8016s000001FXy4AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy4AAG" + } + }, "subtotal": 6750, "subtotal_excluding_tax": 6750, "tax": null, @@ -8190,64 +8462,11 @@ http_interactions: "total_excluding_tax": 6750, "total_tax_amounts": [], "transfer_data": null, - "webhooks_delivered_at": 1690916478 + "webhooks_delivered_at": null } ], "has_more": false, "url": "/v1/invoices" } - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6YAAU-8017e000000nQ6YAAU - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6YAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6YAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNooIsgf92XbAOpCusmUwP","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_pGwqjyUJnoVwAO"}' - 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: - - Wed, 11 Oct 2023 16:38:57 GMT - Set-Cookie: - - BrowserId=rHoemWhUEe6U8H9IkAI6-A; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38: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=117/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCrOUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCrOUAW","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/translate_an_sf_order_with_coupons_on_both_the_order_and_order_items.yml b/test/vcr_cassettes/integration/translate/test_coupon/translate_an_sf_order_with_coupons_on_both_the_order_and_order_items.yml index 72532a06ca..da05c4f714 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/translate_an_sf_order_with_coupons_on_both_the_order_and_order_items.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/translate_an_sf_order_with_coupons_on_both_the_order_and_order_items.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:57 GMT + - Thu, 09 Nov 2023 19:23:27 GMT Set-Cookie: - - BrowserId=4yBWKTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:57 + - BrowserId=dUEdvH81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7343/5000000 + - api-usage=353/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBfCAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZwh4AAC","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBfCAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:57 GMT + - Thu, 09 Nov 2023 19:23:27 GMT Set-Cookie: - - BrowserId=43GECzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:57 + - BrowserId=dWoDVn81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7344/5000000 + - api-usage=336/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qQAAQ" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnQ1AAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qQAAQ","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:58 GMT + - Thu, 09 Nov 2023 19:23:27 GMT Set-Cookie: - - BrowserId=48GfajCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:58 + - BrowserId=dYuUQn81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7344/5000000 + - api-usage=352/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnQ1AAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qQAAQ","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:58 GMT + - Thu, 09 Nov 2023 19:23:27 GMT Set-Cookie: - - BrowserId=4_fKjjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:58 + - BrowserId=dZbe5H81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7346/5000000 + - api-usage=353/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6gAAB" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRVAA0" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6gAAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyRVAA0","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:59 GMT + - Thu, 09 Nov 2023 19:23:27 GMT Set-Cookie: - - BrowserId=5DrutDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:59 + - BrowserId=dbGTQn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:27 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7345/5000000 + - api-usage=361/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwh4AAC"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBfCAAU"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:59 GMT + - Thu, 09 Nov 2023 19:23:28 GMT Set-Cookie: - - BrowserId=5HG19TCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:59 + - BrowserId=db5khH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7355/5000000 + - api-usage=362/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NeukwAAB" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE0MAAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NeukwAAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE0MAAV","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"translate_coupons_on_order_and_items@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:00 GMT + - Thu, 09 Nov 2023 19:23:28 GMT Set-Cookie: - - BrowserId=5M0cHDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:00 + - BrowserId=deBEa381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7347/5000000 + - api-usage=363/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHoRKAA0" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY99WAAT" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHoRKAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY99WAAT","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000NeukwAAB","SBQQ__PrimaryContact__c":"0037e00001jHoRKAA0","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE0MAAV","SBQQ__PrimaryContact__c":"0036s00000WY99WAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:00 GMT + - Thu, 09 Nov 2023 19:23:28 GMT Set-Cookie: - - BrowserId=5RkZUzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:00 + - BrowserId=df89zX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:28 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7356/5000000 + - api-usage=340/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJmnAAH","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DszAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:01 GMT + - Thu, 09 Nov 2023 19:23:29 GMT Set-Cookie: - - BrowserId=5cRNaDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:01 + - BrowserId=dlkeRn81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7347/5000000 + - api-usage=331/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJmnAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DszAAE body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:02 GMT + - Thu, 09 Nov 2023 19:23:29 GMT Set-Cookie: - - BrowserId=5fsVPTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:02 + - BrowserId=dmgSEH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"Id\":\"a0z7e00000BDJmnAAH\",\"Name\":\"Q-00884\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwh4AAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"Id\":\"a0z6s0000016DszAAE\",\"Name\":\"Q-00202\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeukwAAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"Id\":\"0017e00001iZwh4AAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeukwAAB\"},\"Id\":\"0067e00000NeukwAAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE0MAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"Id\":\"0016s00000fzBfCAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"Id\":\"0066s00000CfE0MAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnQ1AAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qQAAQ body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:03 GMT + - Thu, 09 Nov 2023 19:23:29 GMT Set-Cookie: - - BrowserId=5pAo3jCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:03 + - BrowserId=dr_13381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:29 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK\"},\"Id\":\"01t7e000009AnQ1AAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"Id\":\"01t6s000004g3qQAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6gAAB\"},\"Product2Id\":\"01t7e000009AnQ1AAK\",\"Id\":\"01u7e00000Isi6gAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyRVAA0\"},\"Product2Id\":\"01t6s000004g3qQAAQ\",\"Id\":\"01u6s000006MyRVAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"Id\":\"a0z7e00000BDJmnAAH\",\"Name\":\"Q-00884\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwh4AAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"Id\":\"a0z6s0000016DszAAE\",\"Name\":\"Q-00202\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeukwAAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"Id\":\"0017e00001iZwh4AAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeukwAAB\"},\"Id\":\"0067e00000NeukwAAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\"},\"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/01t7e000009AnQ1AAK\"},\"Id\":\"01t7e000009AnQ1AAK\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE0MAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"Id\":\"0016s00000fzBfCAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"Id\":\"0066s00000CfE0MAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"Id\":\"01t6s000004g3qQAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6gAAB\"},\"Product2Id\":\"01t7e000009AnQ1AAK\",\"Id\":\"01u7e00000Isi6gAAB\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRVAA0\"},\"Product2Id\":\"01t6s000004g3qQAAQ\",\"Id\":\"01u6s000006MyRVAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:03 GMT + - Thu, 09 Nov 2023 19:23:30 GMT Set-Cookie: - - BrowserId=5xDKOTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:03 + - BrowserId=dwqTtn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:30 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:30 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:30 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,30 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeukwAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\",\"Id\":\"0067e00000NeukwAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwh4AAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00884\",\"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\":\"0017e00001iZwh4AAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeukwAAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnQ1AAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK\"},\"Id\":\"01t7e000009AnQ1AAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6gAAB\"},\"Product2Id\":\"01t7e000009AnQ1AAK\",\"Id\":\"01u7e00000Isi6gAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6gAAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"Id\":\"a0z6s0000016DszAAE\",\"Name\":\"Q-00202\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE0MAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"Id\":\"0016s00000fzBfCAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"Id\":\"0066s00000CfE0MAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\"},\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DszAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qQAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRVAA0\",\"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-0001693\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"Id\":\"01t6s000004g3qQAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeukwAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\",\"Id\":\"0067e00000NeukwAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwh4AAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00884\",\"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\":\"0017e00001iZwh4AAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeukwAAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnQ1AAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK\"},\"Id\":\"01t7e000009AnQ1AAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6gAAB\"},\"Product2Id\":\"01t7e000009AnQ1AAK\",\"Id\":\"01u7e00000Isi6gAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6gAAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"Id\":\"a0z6s0000016DszAAE\",\"Name\":\"Q-00202\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE0MAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"Id\":\"0016s00000fzBfCAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"Id\":\"0066s00000CfE0MAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\"},\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DszAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qQAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRVAA0\",\"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-0001693\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"Id\":\"01t6s000004g3qQAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -671,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:07 GMT + - Thu, 09 Nov 2023 19:23:31 GMT Set-Cookie: - - BrowserId=6OTHSDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:07 + - BrowserId=d7MIhX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:31 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:31 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:31 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -694,26 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"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/0067e00000NeukwAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\",\"Id\":\"0067e00000NeukwAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwh4AAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00884\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwh4AAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeukwAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmnAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6gAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnQ1AAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"Id\":\"a0z6s0000016DszAAE\",\"Name\":\"Q-00202\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE0MAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"Id\":\"0016s00000fzBfCAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"Id\":\"0066s00000CfE0MAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\"},\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DszAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qQAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRVAA0\",\"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-0001694\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"Id\":\"01t6s000004g3qQAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"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/0067e00000NeukwAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\",\"Id\":\"0067e00000NeukwAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwh4AAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00884\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwh4AAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeukwAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmnAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6gAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnQ1AAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"Id\":\"a0z6s0000016DszAAE\",\"Name\":\"Q-00202\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE0MAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"Id\":\"0016s00000fzBfCAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"Id\":\"0066s00000CfE0MAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\"},\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DszAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qQAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRVAA0\",\"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-0001694\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"Id\":\"01t6s000004g3qQAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:09 GMT + - Thu, 09 Nov 2023 19:23:32 GMT Set-Cookie: - - BrowserId=6m-tWTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:09 + - BrowserId=eF9N9n81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,17 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH\"},\"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/0067e00000NeukwAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJmnAAH\",\"AccountId\":\"0017e00001iZwh4AAC\",\"Id\":\"0067e00000NeukwAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwh4AAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00884\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwh4AAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeukwAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJmnAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJmnAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhdAAE\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJmnAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6gAAB\",\"Id\":\"a0v7e000008xWhdAAE\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnQ1AAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DszAAE\",\"AccountId\":\"0016s00000fzBfCAAU\",\"Id\":\"0066s00000CfE0MAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBfCAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00202\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBfCAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE0MAAV\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DszAAE\",\"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\":\"a0z6s0000016DszAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldpAAA\"},\"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-11-09 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\":\"a0z6s0000016DszAAE\",\"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\":\"a0v6s000000tldpAAA\",\"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-0001694\",\"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\":\"01u6s000006MyRVAA0\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qQAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qQAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qQAAQ\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -785,12 +786,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:10 GMT + - Thu, 09 Nov 2023 19:23:32 GMT Set-Cookie: - - BrowserId=6t0U9TCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:10 + - BrowserId=eJg4dn81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:32 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:32 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:32 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -803,11 +804,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7348/5000000 + - api-usage=380/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -924,7 +925,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -935,14 +936,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1110,7 +1109,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 @@ -1126,7 +1126,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1144,9 +1146,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1290,9 +1291,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1414,9 +1415,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 @@ -1461,13 +1471,14 @@ http_interactions: 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":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 + 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":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 @@ -1703,7 +1714,8 @@ http_interactions: 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":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 + 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 @@ -1889,7 +1901,8 @@ http_interactions: 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":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 + 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 @@ -1900,7 +1913,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -1972,7 +1990,8 @@ http_interactions: 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":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 + 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 @@ -2018,7 +2037,8 @@ http_interactions: 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":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 + 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 @@ -2078,7 +2098,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2103,7 +2123,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2159,10 +2190,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE body: encoding: US-ASCII string: '' @@ -2181,12 +2212,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:11 GMT + - Thu, 09 Nov 2023 19:23:33 GMT Set-Cookie: - - BrowserId=64O1OjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:11 + - BrowserId=eOYKqX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2199,9 +2230,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7347/5000000 + - api-usage=362/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:09 GMT + - Thu, 09 Nov 2023 19:23:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2210,15 +2241,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH"},"Id":"a0z7e00000BDJmnAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00884","CreatedDate":"2023-08-01T19:02:01.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:09.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:02:09.000+0000","LastReferencedDate":"2023-08-01T19:02:09.000+0000","SBQQ__Account__c":"0017e00001iZwh4AAC","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T19:02:09.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":"0067e00000NeukwAAB","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHoRKAA0","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE"},"Id":"a0z6s0000016DszAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00202","CreatedDate":"2023-11-09T19:23:28.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:32.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:23:32.000+0000","LastReferencedDate":"2023-11-09T19:23:32.000+0000","SBQQ__Account__c":"0016s00000fzBfCAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:23:32.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":"0066s00000CfE0MAAV","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY99WAAT","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJmnAAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DszAAE%27 body: encoding: US-ASCII string: '' @@ -2237,12 +2268,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:11 GMT + - Thu, 09 Nov 2023 19:23:33 GMT Set-Cookie: - - BrowserId=671i7TCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:11 + - BrowserId=eQId9H81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2255,7 +2286,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7348/5000000 + - api-usage=354/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2264,11 +2295,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhdAAE"},"Id":"a0v7e000008xWhdAAE"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldpAAA"},"Id":"a0v6s000000tldpAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhdAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldpAAA body: encoding: US-ASCII string: '' @@ -2287,12 +2318,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:12 GMT + - Thu, 09 Nov 2023 19:23:33 GMT Set-Cookie: - - BrowserId=6_ZMlzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:12 + - BrowserId=eRHVXX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2305,9 +2336,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7357/5000000 + - api-usage=381/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:09 GMT + - Thu, 09 Nov 2023 19:23:32 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2316,14 +2347,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhdAAE"},"Id":"a0v7e000008xWhdAAE","IsDeleted":false,"Name":"QL-0001745","CreatedDate":"2023-08-01T19:02:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:09.000+0000","SBQQ__Quote__c":"a0z7e00000BDJmnAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6gAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnQ1AAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldpAAA"},"Id":"a0v6s000000tldpAAA","IsDeleted":false,"Name":"QL-0001695","CreatedDate":"2023-11-09T19:23:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:32.000+0000","SBQQ__Quote__c":"a0z6s0000016DszAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRVAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qQAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"25% off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' @@ -2344,12 +2375,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:12 GMT + - Thu, 09 Nov 2023 19:23:33 GMT Set-Cookie: - - BrowserId=7EZpOjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:12 + - BrowserId=eS3ozX81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:33 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2362,9 +2393,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7349/5000000 + - api-usage=374/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsgEAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIDEAY" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2373,11 +2404,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsgEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvIDEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$50 off coupon","Amount_Off__c":50,"Duration__c":"once"}' @@ -2398,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:13 GMT + - Thu, 09 Nov 2023 19:23:34 GMT Set-Cookie: - - BrowserId=7INyTjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:13 + - BrowserId=eU8sin81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2416,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7350/5000000 + - api-usage=367/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEslEAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIIEAY" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2427,14 +2458,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEslEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvIIEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhdAAE","Quote_Stripe_Coupon__c":"a1R7e000007JEsgEAG"}' + string: '{"Quote_Line__c":"a0v6s000000tldpAAA","Quote_Stripe_Coupon__c":"a1R6s000000uvIDEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -2452,12 +2483,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:13 GMT + - Thu, 09 Nov 2023 19:23:34 GMT Set-Cookie: - - BrowserId=7QN3bTCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:13 + - BrowserId=eWI-v381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2470,9 +2501,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7345/5000000 + - api-usage=390/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVwfEAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5zEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2481,14 +2512,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVwfEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5zEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote__c":"a0z7e00000BDJmnAAH","Quote_Stripe_Coupon__c":"a1R7e000007JEslEAG"}' + string: '{"Quote__c":"a0z6s0000016DszAAE","Quote_Stripe_Coupon__c":"a1R6s000000uvIIEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -2506,12 +2537,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:14 GMT + - Thu, 09 Nov 2023 19:23:34 GMT Set-Cookie: - - BrowserId=7V3MITCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:14 + - BrowserId=eXWgT381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2524,9 +2555,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7348/5000000 + - api-usage=355/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q7e000007DvD9EAK" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKN3EAO" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2535,11 +2566,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1Q7e000007DvD9EAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1Q6s000001FKN3EAO","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2560,12 +2591,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:14 GMT + - Thu, 09 Nov 2023 19:23:34 GMT Set-Cookie: - - BrowserId=7aGy_jCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:14 + - BrowserId=eYnEcX81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:34 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2580,14 +2611,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7349/5000000 + - api-usage=364/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2606,12 +2637,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:16 GMT + - Thu, 09 Nov 2023 19:23:35 GMT Set-Cookie: - - BrowserId=7osB7TCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:16 + - BrowserId=emPQ0381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2624,7 +2655,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7350/5000000 + - api-usage=402/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2633,12 +2664,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6iAAE"},"Id":"8017e000000nQ6iAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwh4AAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeukwAAB","EffectiveDate":"2023-08-01","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":"00000975","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:02:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:16.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:02:16.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":"a0z7e00000BDJmnAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXyJAAW"},"Id":"8016s000001FXyJAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBfCAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE0MAAV","EffectiveDate":"2023-11-09","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":"00000273","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:35.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:35.000+0000","LastViewedDate":null,"LastReferencedDate":null,"SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Queued","SBQQ__Quote__c":"a0z6s0000016DszAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2659,12 +2690,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:16 GMT + - Thu, 09 Nov 2023 19:23:35 GMT Set-Cookie: - - BrowserId=7tUpsjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:17 + - BrowserId=enUPCH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:35 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2679,14 +2710,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7346/5000000 + - api-usage=405/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW body: encoding: US-ASCII string: '' @@ -2705,12 +2736,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:17 GMT + - Thu, 09 Nov 2023 19:23:36 GMT Set-Cookie: - - BrowserId=72SY3TCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:17 + - BrowserId=ertmmH81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2723,9 +2754,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7349/5000000 + - api-usage=395/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:17 GMT + - Thu, 09 Nov 2023 19:23:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2734,12 +2765,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE"},"Id":"8017e000000nQ6iAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwh4AAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeukwAAB","EffectiveDate":"2023-08-01","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-01T19:02:17.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000975","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:02:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:02:17.000+0000","LastViewedDate":"2023-08-01T19:02:17.000+0000","LastReferencedDate":"2023-08-01T19:02:17.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":"a0z7e00000BDJmnAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW"},"Id":"8016s000001FXyJAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBfCAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE0MAAV","EffectiveDate":"2023-11-09","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-11-09T19:23:36.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000273","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:36.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:36.000+0000","LastViewedDate":"2023-11-09T19:23:35.000+0000","LastReferencedDate":"2023-11-09T19:23:35.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":"a0z6s0000016DszAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW body: encoding: US-ASCII string: '' @@ -2758,12 +2790,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:18 GMT + - Thu, 09 Nov 2023 19:23:36 GMT Set-Cookie: - - BrowserId=76aDUDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:18 + - BrowserId=ewbuxn81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:36 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2776,9 +2808,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7351/5000000 + - api-usage=412/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:17 GMT + - Thu, 09 Nov 2023 19:23:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2787,15 +2819,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE"},"Id":"8017e000000nQ6iAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwh4AAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeukwAAB","EffectiveDate":"2023-08-01","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-01T19:02:17.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000975","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:02:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:02:17.000+0000","LastViewedDate":"2023-08-01T19:02:17.000+0000","LastReferencedDate":"2023-08-01T19:02:17.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":"a0z7e00000BDJmnAAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW"},"Id":"8016s000001FXyJAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBfCAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE0MAAV","EffectiveDate":"2023-11-09","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-11-09T19:23:36.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000273","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:36.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:36.000+0000","LastViewedDate":"2023-11-09T19:23:36.000+0000","LastReferencedDate":"2023-11-09T19:23:36.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z6s0000016DszAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6iAAE"]}' + string: '{"order_ids":["8016s000001FXyJAAW"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2813,12 +2846,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:18 GMT + - Thu, 09 Nov 2023 19:23:37 GMT Set-Cookie: - - BrowserId=7-GRbzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:18 + - BrowserId=e0g9qn81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:37 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2838,26 +2871,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHoRKAA0"},"Id":"0037e00001jHoRKAA0","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"translate_coupons_on_order_and_items@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:02:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:00.000+0000","LastViewedDate":"2023-08-01T19:02:00.000+0000","LastReferencedDate":"2023-08-01T19:02:00.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHoRKAA0","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeukwAAB"},"Id":"0067e00000NeukwAAB","IsDeleted":false,"AccountId":"0017e00001iZwh4AAC","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:01.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:01.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T19:01:59.000+0000","LastReferencedDate":"2023-08-01T19:01:59.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJmnAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC"},"Id":"0017e00001iZwh4AAC","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwh4AAC","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:57.000+0000","LastViewedDate":"2023-08-01T19:01:57.000+0000","LastReferencedDate":"2023-08-01T19:01: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":["0017e00001iZwh4AAC"],"Opportunities":["0067e00000NeukwAAB"],"Contacts":["0037e00001jHoRKAA0"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHoRKAA0","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":"0067e00000NeukwAAB","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T19:02:15.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY99WAAT"},"Id":"0036s00000WY99WAAT","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"translate_coupons_on_order_and_items@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:28.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:28.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:28.000+0000","LastViewedDate":"2023-11-09T19:23:28.000+0000","LastReferencedDate":"2023-11-09T19:23:28.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY99WAAT","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV"},"Id":"0066s00000CfE0MAAV","IsDeleted":false,"AccountId":"0016s00000fzBfCAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:28.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:28.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:28.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:23:28.000+0000","LastReferencedDate":"2023-11-09T19:23:28.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DszAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBfCAAU"},"Id":"0016s00000fzBfCAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBfCAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:27.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:27.000+0000","LastViewedDate":"2023-11-09T19:23:27.000+0000","LastReferencedDate":"2023-11-09T19:23:27.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":["0016s00000fzBfCAAU"],"Opportunities":["0066s00000CfE0MAAV"],"Contacts":["0036s00000WY99WAAT"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY99WAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE0MAAV","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:23:34.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwh4AAC","LastReferencedDate":"2023-08-01T19:02:15.000+0000","LastViewedDate":"2023-08-01T19:02:15.000+0000","SystemModstamp":"2023-08-01T19:02:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:15.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:02:01.000+0000","Name":"Q-00884","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJmnAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJmnAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK"},"Id":"01t7e000009AnQ1AAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:01:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:58.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBfCAAU","LastReferencedDate":"2023-11-09T19:23:34.000+0000","LastViewedDate":"2023-11-09T19:23:34.000+0000","SystemModstamp":"2023-11-09T19:23:34.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:34.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:28.000+0000","Name":"Q-00202","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DszAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DszAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qQAAQ"},"Id":"01t6s000004g3qQAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:23:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:27.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:27.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/01u7e00000Isi6gAAB"},"Id":"01u7e00000Isi6gAAB","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnQ1AAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T19:01:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:58.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/a0v7e000008xWhdAAE"},"Id":"a0v7e000008xWhdAAE","IsDeleted":false,"Name":"QL-0001745","CreatedDate":"2023-08-01T19:02:09.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:09.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:09.000+0000","SBQQ__Quote__c":"a0z7e00000BDJmnAAH","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":"01u7e00000Isi6gAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnQ1AAK","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-01","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-01 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":["01t7e000009AnQ1AAK"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWhdAAE","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":"0000000968","SystemModstamp":"2023-08-01T19:02:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:17.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:02:15.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6gAAB","OrderId":"8017e000000nQ6iAAE","IsDeleted":false,"Product2Id":"01t7e000009AnQ1AAK","Id":"8027e000001bPiTAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPiTAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NeukwAAB"],"Accounts":["0017e00001iZwh4AAC"],"OrderItems":["8027e000001bPiTAAU"],"Quotes":["a0z7e00000BDJmnAAH"],"Opportunity":{"Id":"0067e00000NeukwAAB","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeukwAAB","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":"a0z7e00000BDJmnAAH","SBQQ__PriceCalcStatus__c":"Queued","SBQQ__PaymentTerm__c":"Net - 30","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T19:02:18.000+0000","LastViewedDate":"2023-08-01T19:02:18.000+0000","SystemModstamp":"2023-08-01T19:02:17.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:17.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:02:15.000+0000","TotalAmount":1440.00,"OrderNumber":"00000975","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T19:02:17.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000NeukwAAB","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwh4AAC","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6iAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyRVAA0"},"Id":"01u6s000006MyRVAA0","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qQAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:23:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:27.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:27.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldpAAA"},"Id":"a0v6s000000tldpAAA","IsDeleted":false,"Name":"QL-0001695","CreatedDate":"2023-11-09T19:23:32.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:32.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:32.000+0000","SBQQ__Quote__c":"a0z6s0000016DszAAE","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":"01u6s000006MyRVAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qQAAQ","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-11-09","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-11-09 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":["01t6s000004g3qQAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tldpAAA","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":"0000000502","SystemModstamp":"2023-11-09T19:23:36.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:36.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:35.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRVAA0","OrderId":"8016s000001FXyJAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qQAAQ","Id":"8026s0000014MviAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MviAAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE0MAAV"],"Accounts":["0016s00000fzBfCAAU"],"OrderItems":["8026s0000014MviAAE"],"Quotes":["a0z6s0000016DszAAE"],"Opportunity":{"Id":"0066s00000CfE0MAAV","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE0MAAV","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":"a0z6s0000016DszAAE","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:23:37.000+0000","LastViewedDate":"2023-11-09T19:23:37.000+0000","SystemModstamp":"2023-11-09T19:23:36.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:36.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:34.000+0000","TotalAmount":1440.00,"OrderNumber":"00000273","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:23:36.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE0MAAV","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBfCAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyJAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyJAAW","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 @@ -2874,10 +2908,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6iAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyJAAW%27%0A body: encoding: US-ASCII string: '' @@ -2896,12 +2930,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:20 GMT + - Thu, 09 Nov 2023 19:23:38 GMT Set-Cookie: - - BrowserId=8MjjfjCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:20 + - BrowserId=fBLgmH81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2914,7 +2948,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7347/5000000 + - api-usage=403/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2923,11 +2957,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE"},"Type":"New","OpportunityId":"0067e00000NeukwAAB","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeukwAAB"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW"},"Type":"New","OpportunityId":"0066s00000CfE0MAAV","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE0MAAV"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6iAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXyJAAW%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2946,12 +2980,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:20 GMT + - Thu, 09 Nov 2023 19:23:38 GMT Set-Cookie: - - BrowserId=8QPwrTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:20 + - BrowserId=fCGtFn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:38 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:38 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:38 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2964,7 +2998,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7358/5000000 + - api-usage=400/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2973,14 +3007,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE"},"Id":"8017e000000nQ6iAAE"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW"},"Id":"8016s000001FXyJAAW"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZwh4AAC&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZwh4AAC + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBfCAAU&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBfCAAU headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2989,13 +3023,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - f9dff263-5e89-40f4-b398-05462c8b55da + - 1229664f-6fac-4e3f-8361-55e99dff1da3 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3010,37 +3044,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:21 GMT + - Thu, 09 Nov 2023 19:23:39 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - f9dff263-5e89-40f4-b398-05462c8b55da + - 1229664f-6fac-4e3f-8361-55e99dff1da3 Original-Request: - - req_CPnwyCvEtOroiW + - req_W8wyaobVqS4PCE Request-Id: - - req_CPnwyCvEtOroiW + - req_W8wyaobVqS4PCE 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: @@ -3049,11 +3090,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON86QGiiE5rAOy", + "id": "cus_Oyb1bvwx6HqUCH", "object": "customer", "address": null, "balance": 0, - "created": 1690916540, + "created": 1699557819, "currency": null, "default_currency": null, "default_source": null, @@ -3061,7 +3102,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "39A82502", + "invoice_prefix": "544E080F", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3070,10 +3111,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwh4AAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwh4AAC" + "salesforce_account_id": "0016s00000fzBfCAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBfCAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3081,13 +3122,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBfCAAU body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON86QGiiE5rAOy"}' + string: '{"Stripe_ID__c":"cus_Oyb1bvwx6HqUCH"}' headers: User-Agent: - Faraday v2.4.0 @@ -3105,12 +3146,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:21 GMT + - Thu, 09 Nov 2023 19:23:39 GMT Set-Cookie: - - BrowserId=8XBHczCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:21 + - BrowserId=fHcgs381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3125,17 +3166,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7356/5000000 + - api-usage=404/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnQ1AAK&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnQ1AAK + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qQAAQ&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qQAAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3144,15 +3185,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_CPnwyCvEtOroiW","request_duration_ms":308}}' + - '{"last_request_metrics":{"request_id":"req_W8wyaobVqS4PCE","request_duration_ms":388}}' Idempotency-Key: - - f1a8e744-0ab2-43a1-8a8d-05c93a40fa42 + - 4db69d96-aa6e-4ef2-ab03-7630d01981b6 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3167,37 +3208,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:21 GMT + - Thu, 09 Nov 2023 19:23:39 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - f1a8e744-0ab2-43a1-8a8d-05c93a40fa42 + - 4db69d96-aa6e-4ef2-ab03-7630d01981b6 Original-Request: - - req_mNrkPI5zdE5DSe + - req_UkIVYKQphroTMA Request-Id: - - req_mNrkPI5zdE5DSe + - req_UkIVYKQphroTMA 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: @@ -3206,39 +3254,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON86Wu5XlOqyKE", + "id": "prod_Oyb1HJi6hW4x7B", "object": "product", "active": true, "attributes": [], - "created": 1690916541, + "created": 1699557819, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnQ1AAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnQ1AAK" + "salesforce_product2_id": "01t6s000004g3qQAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qQAAQ" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-94", + "sku": "rest-product2--2023-11-09-000000-utc-9", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916541, + "updated": 1699557819, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qQAAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON86Wu5XlOqyKE"}' + string: '{"Stripe_ID__c":"prod_Oyb1HJi6hW4x7B"}' headers: User-Agent: - Faraday v2.4.0 @@ -3256,12 +3305,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:22 GMT + - Thu, 09 Nov 2023 19:23:39 GMT Set-Cookie: - - BrowserId=8ekgezCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:22 + - BrowserId=fMPgT381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:39 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:39 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:39 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3276,14 +3325,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7351/5000000 + - api-usage=393/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnQ1AAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qQAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3302,12 +3351,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:22 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=8jSBujCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:22 + - BrowserId=fOdHfH81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3320,7 +3369,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7352/5000000 + - api-usage=396/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3330,10 +3379,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnQ1AAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qQAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3352,12 +3401,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:23 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=8mzP3TCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:23 + - BrowserId=fPr2L381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3370,7 +3419,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7348/5000000 + - api-usage=401/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3380,10 +3429,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qQAAQ body: encoding: US-ASCII string: '' @@ -3402,12 +3451,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:23 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=8qSoVzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:23 + - BrowserId=fQjY4X81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3420,9 +3469,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7350/5000000 + - api-usage=402/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:22 GMT + - Thu, 09 Nov 2023 19:23:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3431,15 +3480,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnQ1AAK"},"Id":"01t7e000009AnQ1AAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:01:58.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:22.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/01t6s000004g3qQAAQ"},"Id":"01t6s000004g3qQAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:23:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:39.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:39.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_ON86Wu5XlOqyKE","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON86Wu5XlOqyKE"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_Oyb1HJi6hW4x7B","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_Oyb1HJi6hW4x7B"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiTAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MviAAE%27%0A body: encoding: US-ASCII string: '' @@ -3458,12 +3507,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:23 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=8t-2PTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:23 + - BrowserId=fRsA7H81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3476,7 +3525,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7357/5000000 + - api-usage=405/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3486,10 +3535,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiTAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MviAAE%27%0A body: encoding: US-ASCII string: '' @@ -3508,12 +3557,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:24 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=8xYvUTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:24 + - BrowserId=fSi9JH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3526,7 +3575,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7359/5000000 + - api-usage=391/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3536,10 +3585,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnQ1AAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qQAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3558,12 +3607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:24 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=80zPXDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:24 + - BrowserId=fTmsiX81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3576,7 +3625,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7351/5000000 + - api-usage=413/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3586,13 +3635,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON86Wu5XlOqyKE&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6gAAB&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6gAAB + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_Oyb1HJi6hW4x7B&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRVAA0&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRVAA0 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3600,16 +3649,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_mNrkPI5zdE5DSe","request_duration_ms":277}}' Idempotency-Key: - - 528ee1e4-124c-4770-9ff6-1aaec8086f19 + - c2af8cdd-c86e-45f2-8790-825783317f52 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3624,37 +3671,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:24 GMT + - Thu, 09 Nov 2023 19:23:40 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 528ee1e4-124c-4770-9ff6-1aaec8086f19 + - c2af8cdd-c86e-45f2-8790-825783317f52 Original-Request: - - req_fZv2G8t80xTkv6 + - req_EL8RW2rSKUZnUl Request-Id: - - req_fZv2G8t80xTkv6 + - req_EL8RW2rSKUZnUl 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: @@ -3663,21 +3717,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "id": "price_1OAdpIIsgf92XbAOz3mTTQyq", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916544, + "created": 1699557820, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6gAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6gAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRVAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRVAA0" }, "nickname": null, - "product": "prod_ON86Wu5XlOqyKE", + "product": "prod_Oyb1HJi6hW4x7B", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3692,13 +3746,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6gAAB + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRVAA0 body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNpsIsgf92XbAOsxc4fSDM"}' + string: '{"Stripe_ID__c":"price_1OAdpIIsgf92XbAOz3mTTQyq"}' headers: User-Agent: - Faraday v2.4.0 @@ -3716,12 +3770,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:25 GMT + - Thu, 09 Nov 2023 19:23:40 GMT Set-Cookie: - - BrowserId=86fn3TCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:25 + - BrowserId=fXWkIn81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:40 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3736,14 +3790,64 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7352/5000000 + - api-usage=414/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MviAAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:23:41 GMT + Set-Cookie: + - BrowserId=fY2ZUX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=403/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ"},"Id":"a1N6s00000113iGEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPiTAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tldpAAA%27 body: encoding: US-ASCII string: '' @@ -3762,12 +3866,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:25 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Set-Cookie: - - BrowserId=8-leGDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:25 + - BrowserId=fZt8Zn81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3780,7 +3884,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7353/5000000 + - api-usage=397/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3789,11 +3893,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI"},"Id":"a1N7e000002flPpEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5zEAC"},"Id":"a1P6s000001Bk5zEAC"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ body: encoding: US-ASCII string: '' @@ -3812,12 +3916,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:25 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Set-Cookie: - - BrowserId=9CE2QzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:25 + - BrowserId=fakQLX81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3830,9 +3934,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7347/5000000 + - api-usage=406/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:17 GMT + - Thu, 09 Nov 2023 19:23:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3841,12 +3945,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI"},"Id":"a1N7e000002flPpEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0138","CreatedDate":"2023-08-01T19:02:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:17.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bPiTAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsgEAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ"},"Id":"a1N6s00000113iGEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0016","CreatedDate":"2023-11-09T19:23:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:36.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:36.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014MviAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvIDEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsgEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIDEAY body: encoding: US-ASCII string: '' @@ -3865,12 +3969,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:26 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Set-Cookie: - - BrowserId=9FjBqTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:26 + - BrowserId=fbkV2381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3883,9 +3987,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7351/5000000 + - api-usage=394/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:12 GMT + - Thu, 09 Nov 2023 19:23:33 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3894,15 +3998,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsgEAG"},"Id":"a1R7e000007JEsgEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0117","CreatedDate":"2023-08-01T19:02:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:12.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIDEAY"},"Id":"a1R6s000000uvIDEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0013","CreatedDate":"2023-11-09T19:23:33.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:33.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:33.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPpEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPpEAI + string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iGEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iGEAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3911,15 +4015,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fZv2G8t80xTkv6","request_duration_ms":243}}' + - '{"last_request_metrics":{"request_id":"req_UkIVYKQphroTMA","request_duration_ms":288}}' Idempotency-Key: - - ab84b15e-eb0a-4d6d-9b55-7277b14ca878 + - 17935eec-da07-4ee7-829c-a488fd55c0c8 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3934,37 +4038,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:26 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ab84b15e-eb0a-4d6d-9b55-7277b14ca878 + - 17935eec-da07-4ee7-829c-a488fd55c0c8 Original-Request: - - req_n9fsJxnJfzIzeh + - req_EvcGxNSFtg2Wir Request-Id: - - req_n9fsJxnJfzIzeh + - req_EvcGxNSFtg2Wir 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: @@ -3973,18 +4084,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "rfu3KDRl", + "id": "dgh2Nctx", "object": "coupon", "amount_off": null, - "created": 1690916546, + "created": 1699557821, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPpEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPpEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iGEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iGEAQ" }, "name": "25% off coupon", "percent_off": 25.0, @@ -3992,13 +4103,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"rfu3KDRl"}' + string: '{"Stripe_ID__c":"dgh2Nctx"}' headers: User-Agent: - Faraday v2.4.0 @@ -4016,12 +4127,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:26 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Set-Cookie: - - BrowserId=9LLHuTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:26 + - BrowserId=fe-2bX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4036,14 +4147,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7354/5000000 + - api-usage=404/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -4062,12 +4173,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:27 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Set-Cookie: - - BrowserId=9OycbDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:27 + - BrowserId=fgX9qn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:41 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4080,11 +4191,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7349/5000000 + - api-usage=404/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4201,7 +4312,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4212,14 +4323,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4387,7 +4496,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 @@ -4403,7 +4513,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4421,9 +4533,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4567,9 +4678,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4691,9 +4802,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 @@ -4738,13 +4858,14 @@ http_interactions: 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":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 + 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":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 @@ -4980,7 +5101,8 @@ http_interactions: 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":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 + 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 @@ -5166,7 +5288,8 @@ http_interactions: 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":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 + 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 @@ -5177,7 +5300,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5249,7 +5377,8 @@ http_interactions: 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":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 + 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 @@ -5295,7 +5424,8 @@ http_interactions: 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":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 + 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 @@ -5355,7 +5485,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5380,7 +5510,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5436,13 +5577,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsgEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIDEAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"rfu3KDRl"}' + string: '{"Stripe_ID__c":"dgh2Nctx"}' headers: User-Agent: - Faraday v2.4.0 @@ -5460,12 +5601,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:28 GMT + - Thu, 09 Nov 2023 19:23:42 GMT Set-Cookie: - - BrowserId=9XvkQDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:28 + - BrowserId=fmFkVn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5480,14 +5621,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7355/5000000 + - api-usage=392/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5506,12 +5647,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:28 GMT + - Thu, 09 Nov 2023 19:23:42 GMT Set-Cookie: - - BrowserId=9bYuejCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:28 + - BrowserId=fnIswX81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:42 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:42 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:42 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5524,11 +5665,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7348/5000000 + - api-usage=395/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5645,7 +5786,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5656,14 +5797,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5831,7 +5970,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 @@ -5847,7 +5987,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -5865,9 +6007,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -6011,9 +6152,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6135,9 +6276,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 @@ -6182,13 +6332,14 @@ http_interactions: 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":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 + 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":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 @@ -6424,7 +6575,8 @@ http_interactions: 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":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 + 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 @@ -6610,7 +6762,8 @@ http_interactions: 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":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 + 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 @@ -6621,7 +6774,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6693,7 +6851,8 @@ http_interactions: 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":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 + 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 @@ -6739,7 +6898,8 @@ http_interactions: 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":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 + 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 @@ -6799,7 +6959,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6824,7 +6984,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -6880,30 +7051,18 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNpsIsgf92XbAOsxc4fSDM + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXyJAAW%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_n9fsJxnJfzIzeh","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-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -6913,75 +7072,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 19:02:29 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_6dTgjDknKZcbD6 - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:23:43 GMT + Set-Cookie: + - BrowserId=fsEQaX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=405/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNpsIsgf92XbAOsxc4fSDM", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916544, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6gAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6gAAB" - }, - "nickname": null, - "product": "prod_ON86Wu5XlOqyKE", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ"},"Id":"a1N6s00000113iFEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6iAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DszAAE%27 body: encoding: US-ASCII string: '' @@ -7000,12 +7123,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:29 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Set-Cookie: - - BrowserId=9l3f5DCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:29 + - BrowserId=fsxbC381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7018,7 +7141,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7360/5000000 + - api-usage=406/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7027,11 +7150,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI"},"Id":"a1N7e000002flPoEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKN3EAO"},"Id":"a1Q6s000001FKN3EAO"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ body: encoding: US-ASCII string: '' @@ -7050,12 +7173,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:30 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Set-Cookie: - - BrowserId=9rpX6zCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:30 + - BrowserId=ftjd6X81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7068,9 +7191,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7356/5000000 + - api-usage=396/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:17 GMT + - Thu, 09 Nov 2023 19:23:36 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7079,12 +7202,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI"},"Id":"a1N7e000002flPoEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0137","CreatedDate":"2023-08-01T19:02:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:17.000+0000","Amount_Off__c":50.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$50 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nQ6iAAE","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEslEAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ"},"Id":"a1N6s00000113iFEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0015","CreatedDate":"2023-11-09T19:23:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:36.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:36.000+0000","Amount_Off__c":50.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$50 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXyJAAW","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvIIEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEslEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIIEAY body: encoding: US-ASCII string: '' @@ -7103,12 +7226,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:30 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Set-Cookie: - - BrowserId=9v_FoTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:30 + - BrowserId=fuc2D381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7121,9 +7244,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7358/5000000 + - api-usage=407/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:13 GMT + - Thu, 09 Nov 2023 19:23:34 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7132,15 +7255,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEslEAG"},"Id":"a1R7e000007JEslEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0118","CreatedDate":"2023-08-01T19:02:13.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:13.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:13.000+0000","Amount_Off__c":50.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$50 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIIEAY"},"Id":"a1R6s000000uvIIEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0014","CreatedDate":"2023-11-09T19:23:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:34.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:34.000+0000","Amount_Off__c":50.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$50 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2450+off+coupon&amount_off=5000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPoEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPoEAI¤cy=usd + string: name=%2450+off+coupon&amount_off=5000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iFEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iFEAQ¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7149,15 +7272,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_6dTgjDknKZcbD6","request_duration_ms":220}}' + - '{"last_request_metrics":{"request_id":"req_EvcGxNSFtg2Wir","request_duration_ms":241}}' Idempotency-Key: - - feeb5e15-0b36-4391-9a10-e2981e16e1ef + - e8c8620c-2b1d-4a3d-a8cd-9e04c919c280 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7172,37 +7295,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:31 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - feeb5e15-0b36-4391-9a10-e2981e16e1ef + - e8c8620c-2b1d-4a3d-a8cd-9e04c919c280 Original-Request: - - req_SPLdpafsWsO9nw + - req_iT5l0z8DcxAk29 Request-Id: - - req_SPLdpafsWsO9nw + - req_iT5l0z8DcxAk29 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: @@ -7211,18 +7341,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "r42pbhuy", + "id": "Q7gqO2nB", "object": "coupon", "amount_off": 5000, - "created": 1690916550, + "created": 1699557823, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPoEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPoEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iFEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iFEAQ" }, "name": "$50 off coupon", "percent_off": null, @@ -7230,13 +7360,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"r42pbhuy"}' + string: '{"Stripe_ID__c":"Q7gqO2nB"}' headers: User-Agent: - Faraday v2.4.0 @@ -7254,12 +7384,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:31 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Set-Cookie: - - BrowserId=96XJYTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:31 + - BrowserId=fx6Zon81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7274,17 +7404,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7361/5000000 + - api-usage=405/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEslEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvIIEAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"r42pbhuy"}' + string: '{"Stripe_ID__c":"Q7gqO2nB"}' headers: User-Agent: - Faraday v2.4.0 @@ -7302,12 +7432,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:32 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Set-Cookie: - - BrowserId=9_ikijCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:32 + - BrowserId=fzAlw381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:43 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7322,14 +7452,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7350/5000000 + - api-usage=407/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON86QGiiE5rAOy?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oyb1bvwx6HqUCH?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7341,13 +7471,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_SPLdpafsWsO9nw","request_duration_ms":251}}' + - '{"last_request_metrics":{"request_id":"req_EL8RW2rSKUZnUl","request_duration_ms":251}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7362,31 +7492,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:32 GMT + - Thu, 09 Nov 2023 19:23:44 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_kHffc4xZQzEAXx + - req_2ZRANGdkhCCk1U Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7395,11 +7533,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON86QGiiE5rAOy", + "id": "cus_Oyb1bvwx6HqUCH", "object": "customer", "address": null, "balance": 0, - "created": 1690916540, + "created": 1699557819, "currency": null, "default_currency": null, "default_source": null, @@ -7407,7 +7545,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "39A82502", + "invoice_prefix": "544E080F", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7416,10 +7554,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwh4AAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwh4AAC" + "salesforce_account_id": "0016s00000fzBfCAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBfCAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7427,13 +7565,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdpIIsgf92XbAOz3mTTQyq + 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_2ZRANGdkhCCk1U","request_duration_ms":230}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:23:44 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_0o26hLBZ9shuKY + 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_1OAdpIIsgf92XbAOz3mTTQyq", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557820, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRVAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRVAA0" + }, + "nickname": null, + "product": "prod_Oyb1HJi6hW4x7B", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6iAAE&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6iAAE&start_date=1690848000&customer=cus_ON86QGiiE5rAOy&phases[0][items][0][price]=price_1NaNpsIsgf92XbAOsxc4fSDM&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPiTAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPiTAAU&phases[0][items][0][discounts][0][coupon]=rfu3KDRl&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6iAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6iAAE&phases[0][discounts][0][coupon]=r42pbhuy + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXyJAAW&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyJAAW&start_date=1699488000&customer=cus_Oyb1bvwx6HqUCH&phases[0][items][0][price]=price_1OAdpIIsgf92XbAOz3mTTQyq&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MviAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MviAAE&phases[0][items][0][discounts][0][coupon]=dgh2Nctx&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXyJAAW&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyJAAW&phases[0][discounts][0][coupon]=Q7gqO2nB headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7442,15 +7685,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kHffc4xZQzEAXx","request_duration_ms":234}}' + - '{"last_request_metrics":{"request_id":"req_iT5l0z8DcxAk29","request_duration_ms":236}}' Idempotency-Key: - - 1c60fbc3-f2d1-48fd-be9c-8425b6d6b3ee + - 05145ee5-e54b-4c64-8baf-eda8a33c8c74 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7465,37 +7708,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:33 GMT + - Thu, 09 Nov 2023 19:23:45 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 1c60fbc3-f2d1-48fd-be9c-8425b6d6b3ee + - 05145ee5-e54b-4c64-8baf-eda8a33c8c74 Original-Request: - - req_0dxgSR5S6RcpXi + - req_Vwqa3FhpBOB74L Request-Id: - - req_0dxgSR5S6RcpXi + - req_Vwqa3FhpBOB74L 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: @@ -7504,17 +7755,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNq0Isgf92XbAOnu7IdDZC", + "id": "sub_sched_1OAdpMIsgf92XbAOh8Hk77bu", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916552, + "created": 1699557824, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON86QGiiE5rAOy", + "customer": "cus_Oyb1bvwx6HqUCH", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7533,8 +7784,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6iAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6iAAE" + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" }, "phases": [ { @@ -7543,45 +7794,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "r42pbhuy", + "coupon": "Q7gqO2nB", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "r42pbhuy", + "coupon": "Q7gqO2nB", "discount": null } ], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "rfu3KDRl", + "coupon": "dgh2Nctx", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiTAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiTAAU" + "salesforce_order_item_id": "8026s0000014MviAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MviAAE" }, - "plan": "price_1NaNpsIsgf92XbAOsxc4fSDM", - "price": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "plan": "price_1OAdpIIsgf92XbAOz3mTTQyq", + "price": "price_1OAdpIIsgf92XbAOz3mTTQyq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6iAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6iAAE" + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7591,16 +7842,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNq0Isgf92XbAOn9qtrAiD", + "subscription": "sub_1OAdpMIsgf92XbAOITKild7o", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNq0Isgf92XbAOnu7IdDZC"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdpMIsgf92XbAOh8Hk77bu"}' headers: User-Agent: - Faraday v2.4.0 @@ -7618,12 +7869,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:02:33 GMT + - Thu, 09 Nov 2023 19:23:45 GMT Set-Cookie: - - BrowserId=-MJdUTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:33 + - BrowserId=f-ljuH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7638,18 +7889,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7376/5000000 + - api-usage=408/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6iAAE-8017e000000nQ6iAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXyJAAW-8016s000001FXyJAAW body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6iAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6iAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNq0Isgf92XbAOnu7IdDZC","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXyJAAW","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXyJAAW","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdpMIsgf92XbAOh8Hk77bu","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_Vwqa3FhpBOB74L"}' headers: User-Agent: - Faraday v2.4.0 @@ -7667,12 +7918,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:34 GMT + - Thu, 09 Nov 2023 19:23:45 GMT Set-Cookie: - - BrowserId=-RTqPTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:34 + - BrowserId=gD-Zqn81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7685,20 +7936,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7370/5000000 + - api-usage=398/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrM4EAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000Kxd6EAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrM4EAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000Kxd6EAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNq0Isgf92XbAOnu7IdDZC?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdpMIsgf92XbAOh8Hk77bu?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7710,13 +7961,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0dxgSR5S6RcpXi","request_duration_ms":687}}' + - '{"last_request_metrics":{"request_id":"req_0o26hLBZ9shuKY","request_duration_ms":208}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7731,31 +7982,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:34 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Content-Type: - application/json Content-Length: - - '3745' + - '3725' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_IG8cnfiyDqZYWs + - req_axyXX0S8tI3JuO Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7764,17 +8023,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNq0Isgf92XbAOnu7IdDZC", + "id": "sub_sched_1OAdpMIsgf92XbAOh8Hk77bu", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916552, + "created": 1699557824, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON86QGiiE5rAOy", + "customer": "cus_Oyb1bvwx6HqUCH", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7793,8 +8052,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6iAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6iAAE" + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" }, "phases": [ { @@ -7803,49 +8062,49 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "r42pbhuy", + "coupon": "Q7gqO2nB", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "r42pbhuy", + "coupon": "Q7gqO2nB", "discount": null } ], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "rfu3KDRl", + "coupon": "dgh2Nctx", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiTAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiTAAU" + "salesforce_order_item_id": "8026s0000014MviAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MviAAE" }, - "plan": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "plan": "price_1OAdpIIsgf92XbAOz3mTTQyq", "price": { - "id": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "id": "price_1OAdpIIsgf92XbAOz3mTTQyq", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916544, + "created": 1699557820, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6gAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6gAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRVAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRVAA0" }, "nickname": null, - "product": "prod_ON86Wu5XlOqyKE", + "product": "prod_Oyb1HJi6hW4x7B", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7865,12 +8124,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6iAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6iAAE" + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7880,13 +8139,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNq0Isgf92XbAOn9qtrAiD", + "subscription": "sub_1OAdpMIsgf92XbAOITKild7o", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW body: encoding: US-ASCII string: '' @@ -7905,12 +8164,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:34 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Set-Cookie: - - BrowserId=-XOrJjCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:34 + - BrowserId=gHxUV381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7923,9 +8182,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7371/5000000 + - api-usage=393/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:33 GMT + - Thu, 09 Nov 2023 19:23:45 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7934,13 +8193,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6iAAE"},"Id":"8017e000000nQ6iAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwh4AAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeukwAAB","EffectiveDate":"2023-08-01","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-01T19:02:17.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000975","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:02:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:02:33.000+0000","LastViewedDate":"2023-08-01T19:02:33.000+0000","LastReferencedDate":"2023-08-01T19:02:33.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyJAAW"},"Id":"8016s000001FXyJAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBfCAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE0MAAV","EffectiveDate":"2023-11-09","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-11-09T19:23:36.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000273","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:45.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:45.000+0000","LastViewedDate":"2023-11-09T19:23:45.000+0000","LastReferencedDate":"2023-11-09T19:23:45.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJmnAAH","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_1NaNq0Isgf92XbAOnu7IdDZC","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NaNq0Isgf92XbAOnu7IdDZC"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DszAAE","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_1OAdpMIsgf92XbAOh8Hk77bu","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAdpMIsgf92XbAOh8Hk77bu"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNq0Isgf92XbAOnu7IdDZC + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdpMIsgf92XbAOh8Hk77bu body: encoding: US-ASCII string: '' @@ -7952,13 +8211,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_IG8cnfiyDqZYWs","request_duration_ms":198}}' + - '{"last_request_metrics":{"request_id":"req_axyXX0S8tI3JuO","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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7973,31 +8232,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:35 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Content-Type: - application/json Content-Length: - - '2665' + - '2650' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_exURWDNQIcEcVV + - req_DW6oiIXkb3P3Kk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8006,17 +8273,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNq0Isgf92XbAOnu7IdDZC", + "id": "sub_sched_1OAdpMIsgf92XbAOh8Hk77bu", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916552, + "created": 1699557824, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON86QGiiE5rAOy", + "customer": "cus_Oyb1bvwx6HqUCH", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8035,8 +8302,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6iAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6iAAE" + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" }, "phases": [ { @@ -8045,45 +8312,45 @@ http_interactions: "billing_cycle_anchor": null, "billing_thresholds": null, "collection_method": null, - "coupon": "r42pbhuy", + "coupon": "Q7gqO2nB", "currency": "usd", "default_payment_method": null, "default_tax_rates": [], "description": null, "discounts": [ { - "coupon": "r42pbhuy", + "coupon": "Q7gqO2nB", "discount": null } ], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "rfu3KDRl", + "coupon": "dgh2Nctx", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiTAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiTAAU" + "salesforce_order_item_id": "8026s0000014MviAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MviAAE" }, - "plan": "price_1NaNpsIsgf92XbAOsxc4fSDM", - "price": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "plan": "price_1OAdpIIsgf92XbAOz3mTTQyq", + "price": "price_1OAdpIIsgf92XbAOz3mTTQyq", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6iAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6iAAE" + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -8093,13 +8360,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNq0Isgf92XbAOn9qtrAiD", + "subscription": "sub_1OAdpMIsgf92XbAOITKild7o", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/r42pbhuy + uri: https://api.stripe.com/v1/coupons/Q7gqO2nB body: encoding: US-ASCII string: '' @@ -8111,13 +8378,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_exURWDNQIcEcVV","request_duration_ms":178}}' + - '{"last_request_metrics":{"request_id":"req_DW6oiIXkb3P3Kk","request_duration_ms":226}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8132,31 +8399,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:35 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Content-Type: - application/json Content-Length: - - '537' + - '532' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_HO1x0vGliw63eD + - req_mzULz4975YUKOL Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8165,18 +8439,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "r42pbhuy", + "id": "Q7gqO2nB", "object": "coupon", "amount_off": 5000, - "created": 1690916550, + "created": 1699557823, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPoEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPoEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iFEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iFEAQ" }, "name": "$50 off coupon", "percent_off": null, @@ -8184,10 +8458,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JEslEAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvIIEAY%27 body: encoding: US-ASCII string: '' @@ -8206,12 +8480,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:35 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Set-Cookie: - - BrowserId=-eHW9jCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:35 + - BrowserId=gNCPg381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8224,7 +8498,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7372/5000000 + - api-usage=409/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8233,11 +8507,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI"},"Id":"a1N7e000002flPoEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ"},"Id":"a1N6s00000113iFEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ body: encoding: US-ASCII string: '' @@ -8256,12 +8530,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:35 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Set-Cookie: - - BrowserId=-hjEvzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:35 + - BrowserId=gNydhn81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8274,9 +8548,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7362/5000000 + - api-usage=406/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:31 GMT + - Thu, 09 Nov 2023 19:23:43 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8285,12 +8559,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPoEAI"},"Id":"a1N7e000002flPoEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0137","CreatedDate":"2023-08-01T19:02:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:31.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:31.000+0000","Amount_Off__c":50.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$50 - off coupon","Order_Item__c":null,"Order__c":"8017e000000nQ6iAAE","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEslEAG","Stripe_ID__c":"r42pbhuy","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/r42pbhuy"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iFEAQ"},"Id":"a1N6s00000113iFEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0015","CreatedDate":"2023-11-09T19:23:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:43.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:43.000+0000","Amount_Off__c":50.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$50 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXyJAAW","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvIIEAY","Stripe_ID__c":"Q7gqO2nB","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/Q7gqO2nB"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/rfu3KDRl + uri: https://api.stripe.com/v1/coupons/dgh2Nctx body: encoding: US-ASCII string: '' @@ -8302,13 +8576,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_HO1x0vGliw63eD","request_duration_ms":166}}' + - '{"last_request_metrics":{"request_id":"req_mzULz4975YUKOL","request_duration_ms":199}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8323,31 +8597,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:36 GMT + - Thu, 09 Nov 2023 19:23:46 GMT Content-Type: - application/json Content-Length: - - '536' + - '531' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_dsvh54dA21hWDT + - req_kjGiLqLrbF7VOM Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8356,18 +8637,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "rfu3KDRl", + "id": "dgh2Nctx", "object": "coupon", "amount_off": null, - "created": 1690916546, + "created": 1699557821, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPpEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPpEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iGEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iGEAQ" }, "name": "25% off coupon", "percent_off": 25.0, @@ -8375,10 +8656,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JEsgEAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvIDEAY%27 body: encoding: US-ASCII string: '' @@ -8397,12 +8678,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:36 GMT + - Thu, 09 Nov 2023 19:23:47 GMT Set-Cookie: - - BrowserId=-ptjEDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:36 + - BrowserId=gQ0isH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8415,7 +8696,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7371/5000000 + - api-usage=394/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8424,11 +8705,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI"},"Id":"a1N7e000002flPpEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ"},"Id":"a1N6s00000113iGEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ body: encoding: US-ASCII string: '' @@ -8447,12 +8728,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:37 GMT + - Thu, 09 Nov 2023 19:23:47 GMT Set-Cookie: - - BrowserId=-tPXijCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:37 + - BrowserId=gRvItH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8465,9 +8746,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7363/5000000 + - api-usage=395/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:02:26 GMT + - Thu, 09 Nov 2023 19:23:41 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8476,12 +8757,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPpEAI"},"Id":"a1N7e000002flPpEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0138","CreatedDate":"2023-08-01T19:02:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:26.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bPiTAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsgEAG","Stripe_ID__c":"rfu3KDRl","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/rfu3KDRl"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iGEAQ"},"Id":"a1N6s00000113iGEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0016","CreatedDate":"2023-11-09T19:23:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:41.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:41.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014MviAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvIDEAY","Stripe_ID__c":"dgh2Nctx","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/dgh2Nctx"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBfCAAU body: encoding: US-ASCII string: '' @@ -8500,12 +8781,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:02:37 GMT + - Thu, 09 Nov 2023 19:23:47 GMT Set-Cookie: - - BrowserId=-wlALDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:37 + - BrowserId=gSnTLH81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8518,11 +8799,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7372/5000000 + - api-usage=407/5000000 Etag: - '"G1Nv+Sb4ET8yi4FNWG9QT/ZcEmJXKJ6PxWEsxnJOmzw=--gzip"' Last-Modified: - - Tue, 01 Aug 2023 19:02:21 GMT + - Thu, 09 Nov 2023 19:23:39 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8531,13 +8812,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwh4AAC"},"Id":"0017e00001iZwh4AAC","IsDeleted":false,"MasterRecordId":null,"Name":"REST - Account 2023-08-01 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0017e00001iZwh4AAC","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:21.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:02:21.000+0000","LastReferencedDate":"2023-08-01T19:02:21.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_ON86QGiiE5rAOy","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_ON86QGiiE5rAOy"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0016s00000fzBfCAAU"},"Id":"0016s00000fzBfCAAU","IsDeleted":false,"MasterRecordId":null,"Name":"REST + Account 2023-11-09 00:00:00 UTC","Type":null,"ParentId":null,"BillingStreet":null,"BillingCity":null,"BillingState":null,"BillingPostalCode":null,"BillingCountry":null,"BillingLatitude":null,"BillingLongitude":null,"BillingGeocodeAccuracy":null,"BillingAddress":null,"ShippingStreet":null,"ShippingCity":null,"ShippingState":null,"ShippingPostalCode":null,"ShippingCountry":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingGeocodeAccuracy":null,"ShippingAddress":null,"Phone":null,"Fax":null,"AccountNumber":null,"Website":null,"PhotoUrl":"/services/images/photo/0016s00000fzBfCAAU","Sic":null,"Industry":null,"AnnualRevenue":null,"NumberOfEmployees":null,"Ownership":null,"TickerSymbol":null,"Description":null,"Rating":null,"Site":null,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:27.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:39.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:39.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:23:39.000+0000","LastReferencedDate":"2023-11-09T19:23:39.000+0000","Jigsaw":null,"JigsawCompanyId":null,"CleanStatus":"Pending","AccountSource":null,"DunsNumber":null,"Tradestyle":null,"NaicsCode":null,"NaicsDesc":null,"YearStarted":null,"SicDesc":null,"DandbCompanyId":null,"OperatingHoursId":null,"CustomerPriority__c":null,"SLA__c":null,"Active__c":null,"NumberofLocations__c":null,"UpsellOpportunity__c":null,"SLASerialNumber__c":null,"SLAExpirationDate__c":null,"SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__DefaultOpportunity__c":null,"SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__PriceHoldEnd__c":null,"SBQQ__RenewalModel__c":"Contract + Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","SBQQ__CoTerminationEvent__c":null,"Stripe_ID__c":"cus_Oyb1bvwx6HqUCH","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/cus_Oyb1bvwx6HqUCH"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/invoices?customer=cus_ON86QGiiE5rAOy + uri: https://api.stripe.com/v1/invoices?customer=cus_Oyb1bvwx6HqUCH body: encoding: US-ASCII string: '' @@ -8549,13 +8830,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dsvh54dA21hWDT","request_duration_ms":184}}' + - '{"last_request_metrics":{"request_id":"req_kjGiLqLrbF7VOM","request_duration_ms":193}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8570,31 +8851,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:02:37 GMT + - Thu, 09 Nov 2023 19:23:47 GMT Content-Type: - application/json Content-Length: - - '7711' + - '7940' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Finvoices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_1JFUa5ZhT5J23l + - req_33VC1pJS8MyDCe Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8606,7 +8894,7 @@ http_interactions: "object": "list", "data": [ { - "id": "in_1NaNq1Isgf92XbAOC2DDri0r", + "id": "in_1OAdpMIsgf92XbAOQ8BUUTdx", "object": "invoice", "account_country": "US", "account_name": "StripeForce Demo Account ", @@ -8627,13 +8915,13 @@ http_interactions: "billing_reason": "subscription_create", "charge": null, "collection_method": "charge_automatically", - "created": 1690916553, + "created": 1699557824, "currency": "usd", "custom_fields": null, - "customer": "cus_ON86QGiiE5rAOy", + "customer": "cus_Oyb1bvwx6HqUCH", "customer_address": null, "customer_email": null, - "customer_name": "REST Account 2023-08-01 00:00:00 UTC", + "customer_name": "REST Account 2023-11-09 00:00:00 UTC", "customer_phone": null, "customer_shipping": null, "customer_tax_exempt": "none", @@ -8643,22 +8931,22 @@ http_interactions: "default_tax_rates": [], "description": null, "discount": { - "id": "di_1NaNq1Isgf92XbAO4oMo55tI", + "id": "di_1OAdpMIsgf92XbAOgazHbHrO", "object": "discount", "checkout_session": null, "coupon": { - "id": "r42pbhuy", + "id": "Q7gqO2nB", "object": "coupon", "amount_off": 5000, - "created": 1690916550, + "created": 1699557823, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPoEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPoEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113iFEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iFEAQ" }, "name": "$50 off coupon", "percent_off": null, @@ -8666,17 +8954,17 @@ http_interactions: "times_redeemed": 1, "valid": true }, - "customer": "cus_ON86QGiiE5rAOy", + "customer": "cus_Oyb1bvwx6HqUCH", "end": null, "invoice": null, "invoice_item": null, "promotion_code": null, - "start": 1690848000, - "subscription": "sub_1NaNq0Isgf92XbAOn9qtrAiD", + "start": 1699488000, + "subscription": "sub_1OAdpMIsgf92XbAOITKild7o", "subscription_item": null }, "discounts": [ - "di_1NaNq1Isgf92XbAO4oMo55tI" + "di_1OAdpMIsgf92XbAOgazHbHrO" ], "due_date": null, "effective_at": null, @@ -8691,67 +8979,67 @@ http_interactions: "object": "list", "data": [ { - "id": "il_1NaNq1Isgf92XbAOEZwBXU3J", + "id": "il_1OAdpMIsgf92XbAOciY4OTp3", "object": "line_item", "amount": 4000, "amount_excluding_tax": 4000, "currency": "usd", - "description": "Time on REST Product2 2023-08-01 00:00:00 UTC (with discounts) from 01 Aug 2023 until 01 Sep 2023", + "description": "Time on REST Product2 2023-11-09 00:00:00 UTC (with discounts) from 09 Nov 2023 until 09 Dec 2023", "discount_amounts": [ { "amount": 0, - "discount": "di_1NaNq1Isgf92XbAO4oMo55tI" + "discount": "di_1OAdpMIsgf92XbAOgazHbHrO" } ], "discountable": false, "discounts": [], - "invoice_item": "ii_1NaNq1Isgf92XbAOps0ic8Nt", + "invoice_item": "ii_1OAdpMIsgf92XbAO6E7ooTRT", "livemode": false, "metadata": {}, "period": { - "end": 1693526400, - "start": 1690848000 + "end": 1702080000, + "start": 1699488000 }, "plan": { - "id": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "id": "price_1OAdpIIsgf92XbAOz3mTTQyq", "object": "plan", "active": true, "aggregate_usage": null, "amount": 12000, "amount_decimal": "12000", "billing_scheme": "per_unit", - "created": 1690916544, + "created": 1699557820, "currency": "usd", "interval": "month", "interval_count": 1, "livemode": false, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6gAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6gAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRVAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRVAA0" }, "nickname": null, - "product": "prod_ON86Wu5XlOqyKE", + "product": "prod_Oyb1HJi6hW4x7B", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" }, "price": { - "id": "price_1NaNpsIsgf92XbAOsxc4fSDM", + "id": "price_1OAdpIIsgf92XbAOz3mTTQyq", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916544, + "created": 1699557820, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6gAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6gAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRVAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRVAA0" }, "nickname": null, - "product": "prod_ON86Wu5XlOqyKE", + "product": "prod_Oyb1HJi6hW4x7B", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8772,8 +9060,8 @@ http_interactions: }, "quantity": 1, "rendering": null, - "subscription": "sub_1NaNq0Isgf92XbAOn9qtrAiD", - "subscription_item": "si_ON86n9q8OthknZ", + "subscription": "sub_1OAdpMIsgf92XbAOITKild7o", + "subscription_item": "si_Oyb11smyWEQ1la", "tax_amounts": [], "tax_rates": [], "type": "invoiceitem", @@ -8782,11 +9070,11 @@ http_interactions: ], "has_more": false, "total_count": 1, - "url": "/v1/invoices/in_1NaNq1Isgf92XbAOC2DDri0r/lines" + "url": "/v1/invoices/in_1OAdpMIsgf92XbAOQ8BUUTdx/lines" }, "livemode": false, "metadata": {}, - "next_payment_attempt": 1690920153, + "next_payment_attempt": 1699561424, "number": null, "on_behalf_of": null, "paid": false, @@ -8797,8 +9085,8 @@ http_interactions: "payment_method_options": null, "payment_method_types": null }, - "period_end": 1690916552, - "period_start": 1690916552, + "period_end": 1699557824, + "period_start": 1699557824, "post_payment_credit_notes_amount": 0, "pre_payment_credit_notes_amount": 0, "quote": null, @@ -8816,7 +9104,13 @@ http_interactions: "paid_at": null, "voided_at": null }, - "subscription": "sub_1NaNq0Isgf92XbAOn9qtrAiD", + "subscription": "sub_1OAdpMIsgf92XbAOITKild7o", + "subscription_details": { + "metadata": { + "salesforce_order_id": "8016s000001FXyJAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyJAAW" + } + }, "subtotal": 4000, "subtotal_excluding_tax": 4000, "tax": null, @@ -8825,70 +9119,17 @@ http_interactions: "total_discount_amounts": [ { "amount": 0, - "discount": "di_1NaNq1Isgf92XbAO4oMo55tI" + "discount": "di_1OAdpMIsgf92XbAOgazHbHrO" } ], "total_excluding_tax": 4000, "total_tax_amounts": [], "transfer_data": null, - "webhooks_delivered_at": 1690916553 + "webhooks_delivered_at": 1699557826 } ], "has_more": false, "url": "/v1/invoices" } - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6iAAE-8017e000000nQ6iAAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6iAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6iAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNq0Isgf92XbAOnu7IdDZC","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_0dxgSR5S6RcpXi"}' - 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: - - Wed, 11 Oct 2023 16:38:54 GMT - Set-Cookie: - - BrowserId=qvJGoWhUEe6S1iF2KoCUXg; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38: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=116/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCr9UAG" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCr9UAG","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_duration_repeating_coupon_on_an_order_line.yml b/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_duration_repeating_coupon_on_an_order_line.yml index 942be5f829..af985cbc4f 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_duration_repeating_coupon_on_an_order_line.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_duration_repeating_coupon_on_an_order_line.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:20 GMT + - Thu, 09 Nov 2023 19:22:48 GMT Set-Cookie: - - BrowserId=zWUinjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:20 + - BrowserId=XjwsRH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7246/5000000 + - api-usage=297/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBcJAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZx2xAAC","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBcJAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:21 GMT + - Thu, 09 Nov 2023 19:22:48 GMT Set-Cookie: - - BrowserId=zcs4HzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:21 + - BrowserId=XnFGCX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7248/5000000 + - api-usage=298/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qVAAQ" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnISAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qVAAQ","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:22 GMT + - Thu, 09 Nov 2023 19:22:49 GMT Set-Cookie: - - BrowserId=zitY0DCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:22 + - BrowserId=XpQQ1H81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7252/5000000 + - api-usage=293/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnISAA0","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qVAAQ","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:22 GMT + - Thu, 09 Nov 2023 19:22:49 GMT Set-Cookie: - - BrowserId=zmY_CDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:22 + - BrowserId=XqDhZH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7253/5000000 + - api-usage=283/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6bAAB" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRLAA0" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6bAAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyRLAA0","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:22 GMT + - Thu, 09 Nov 2023 19:22:49 GMT Set-Cookie: - - BrowserId=zqSnazCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:22 + - BrowserId=XrZlYH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7249/5000000 + - api-usage=299/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZx2xAAC"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBcJAAU"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:23 GMT + - Thu, 09 Nov 2023 19:22:49 GMT Set-Cookie: - - BrowserId=ztvksDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:23 + - BrowserId=XsZDuH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7256/5000000 + - api-usage=284/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NeufSAAR" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1dAAF" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NeufSAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1dAAF","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"translate_order_with_duration@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:23 GMT + - Thu, 09 Nov 2023 19:22:49 GMT Set-Cookie: - - BrowserId=zyp5MDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:23 + - BrowserId=XufVV381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7254/5000000 + - api-usage=286/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHoQqAAK" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY99MAAT" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHoQqAAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY99MAAT","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000NeufSAAR","SBQQ__PrimaryContact__c":"0037e00001jHoQqAAK","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1dAAF","SBQQ__PrimaryContact__c":"0036s00000WY99MAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:25 GMT + - Thu, 09 Nov 2023 19:22:49 GMT Set-Cookie: - - BrowserId=0DcudTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:25 + - BrowserId=XxFWW381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7255/5000000 + - api-usage=287/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJn7AAH","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DspAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:26 GMT + - Thu, 09 Nov 2023 19:22:50 GMT Set-Cookie: - - BrowserId=0OhWNDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:26 + - BrowserId=X25DTH81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7256/5000000 + - api-usage=294/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJn7AAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DspAAE body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:27 GMT + - Thu, 09 Nov 2023 19:22:50 GMT Set-Cookie: - - BrowserId=0SPYojCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:27 + - BrowserId=X3x0l381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"Id\":\"a0z7e00000BDJn7AAH\",\"Name\":\"Q-00883\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZx2xAAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"Id\":\"a0z6s0000016DspAAE\",\"Name\":\"Q-00200\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeufSAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"Id\":\"0017e00001iZx2xAAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeufSAAR\"},\"Id\":\"0067e00000NeufSAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1dAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"Id\":\"0016s00000fzBcJAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"Id\":\"0066s00000CfE1dAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnISAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qVAAQ body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:28 GMT + - Thu, 09 Nov 2023 19:22:51 GMT Set-Cookie: - - BrowserId=0cXlZTCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:28 + - BrowserId=X8KlX381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0\"},\"Id\":\"01t7e000009AnISAA0\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"Id\":\"01t6s000004g3qVAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6bAAB\"},\"Product2Id\":\"01t7e000009AnISAA0\",\"Id\":\"01u7e00000Isi6bAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyRLAA0\"},\"Product2Id\":\"01t6s000004g3qVAAQ\",\"Id\":\"01u6s000006MyRLAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"Id\":\"a0z7e00000BDJn7AAH\",\"Name\":\"Q-00883\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZx2xAAC\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"Id\":\"a0z6s0000016DspAAE\",\"Name\":\"Q-00200\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeufSAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"Id\":\"0017e00001iZx2xAAC\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeufSAAR\"},\"Id\":\"0067e00000NeufSAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\"},\"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/01t7e000009AnISAA0\"},\"Id\":\"01t7e000009AnISAA0\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1dAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"Id\":\"0016s00000fzBcJAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"Id\":\"0066s00000CfE1dAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"Id\":\"01t6s000004g3qVAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6bAAB\"},\"Product2Id\":\"01t7e000009AnISAA0\",\"Id\":\"01u7e00000Isi6bAAB\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRLAA0\"},\"Product2Id\":\"01t6s000004g3qVAAQ\",\"Id\":\"01u6s000006MyRLAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:29 GMT + - Thu, 09 Nov 2023 19:22:51 GMT Set-Cookie: - - BrowserId=0j4h9DCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:29 + - BrowserId=YBctx381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:51 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,30 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeufSAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\",\"Id\":\"0067e00000NeufSAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZx2xAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00883\",\"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\":\"0017e00001iZx2xAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeufSAAR\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnISAA0\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0\"},\"Id\":\"01t7e000009AnISAA0\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6bAAB\"},\"Product2Id\":\"01t7e000009AnISAA0\",\"Id\":\"01u7e00000Isi6bAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6bAAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"Id\":\"a0z6s0000016DspAAE\",\"Name\":\"Q-00200\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1dAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"Id\":\"0016s00000fzBcJAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"Id\":\"0066s00000CfE1dAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\"},\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DspAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qVAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRLAA0\",\"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-0001687\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"Id\":\"01t6s000004g3qVAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeufSAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\",\"Id\":\"0067e00000NeufSAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZx2xAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00883\",\"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\":\"0017e00001iZx2xAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeufSAAR\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnISAA0\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0\"},\"Id\":\"01t7e000009AnISAA0\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6bAAB\"},\"Product2Id\":\"01t7e000009AnISAA0\",\"Id\":\"01u7e00000Isi6bAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6bAAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"Id\":\"a0z6s0000016DspAAE\",\"Name\":\"Q-00200\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1dAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"Id\":\"0016s00000fzBcJAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"Id\":\"0066s00000CfE1dAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\"},\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DspAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qVAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRLAA0\",\"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-0001687\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"Id\":\"01t6s000004g3qVAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -671,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:31 GMT + - Thu, 09 Nov 2023 19:22:52 GMT Set-Cookie: - - BrowserId=06hgtTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:31 + - BrowserId=YMccuX81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -694,26 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"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/0067e00000NeufSAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\",\"Id\":\"0067e00000NeufSAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZx2xAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00883\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZx2xAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeufSAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn7AAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6bAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnISAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"Id\":\"a0z6s0000016DspAAE\",\"Name\":\"Q-00200\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1dAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"Id\":\"0016s00000fzBcJAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"Id\":\"0066s00000CfE1dAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\"},\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DspAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qVAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRLAA0\",\"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-0001688\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"Id\":\"01t6s000004g3qVAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"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/0067e00000NeufSAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\",\"Id\":\"0067e00000NeufSAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZx2xAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00883\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZx2xAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeufSAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn7AAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6bAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnISAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"Id\":\"a0z6s0000016DspAAE\",\"Name\":\"Q-00200\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1dAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"Id\":\"0016s00000fzBcJAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"Id\":\"0066s00000CfE1dAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\"},\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DspAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qVAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRLAA0\",\"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-0001688\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"Id\":\"01t6s000004g3qVAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:33 GMT + - Thu, 09 Nov 2023 19:22:54 GMT Set-Cookie: - - BrowserId=1KIpuDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:33 + - BrowserId=YY6zFX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,17 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH\"},\"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/0067e00000NeufSAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJn7AAH\",\"AccountId\":\"0017e00001iZx2xAAC\",\"Id\":\"0067e00000NeufSAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZx2xAAC\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00883\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZx2xAAC\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeufSAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJn7AAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJn7AAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhTAAU\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJn7AAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6bAAB\",\"Id\":\"a0v7e000008xWhTAAU\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnISAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DspAAE\",\"AccountId\":\"0016s00000fzBcJAAU\",\"Id\":\"0066s00000CfE1dAAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBcJAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00200\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBcJAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1dAAF\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DspAAE\",\"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\":\"a0z6s0000016DspAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldQAAQ\"},\"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-11-09 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\":\"a0z6s0000016DspAAE\",\"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\":\"a0v6s000000tldQAAQ\",\"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-0001688\",\"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\":\"01u6s000006MyRLAA0\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qVAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qVAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qVAAQ\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -785,12 +786,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:33 GMT + - Thu, 09 Nov 2023 19:22:54 GMT Set-Cookie: - - BrowserId=1R9wrjCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:33 + - BrowserId=YctGkn81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -803,11 +804,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7266/5000000 + - api-usage=288/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -924,7 +925,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -935,14 +936,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1110,7 +1109,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 @@ -1126,7 +1126,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1144,9 +1146,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1290,9 +1291,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1414,9 +1415,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 @@ -1461,13 +1471,14 @@ http_interactions: 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":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 + 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":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 @@ -1703,7 +1714,8 @@ http_interactions: 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":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 + 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 @@ -1889,7 +1901,8 @@ http_interactions: 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":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 + 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 @@ -1900,7 +1913,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -1972,7 +1990,8 @@ http_interactions: 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":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 + 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 @@ -2018,7 +2037,8 @@ http_interactions: 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":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 + 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 @@ -2078,7 +2098,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2103,7 +2123,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2159,10 +2190,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE body: encoding: US-ASCII string: '' @@ -2181,12 +2212,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:34 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Set-Cookie: - - BrowserId=1a0KJDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:34 + - BrowserId=Yg64kn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2199,9 +2230,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7256/5000000 + - api-usage=303/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:33 GMT + - Thu, 09 Nov 2023 19:22:54 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2210,15 +2241,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH"},"Id":"a0z7e00000BDJn7AAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00883","CreatedDate":"2023-08-01T19:01:26.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:33.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:01:33.000+0000","LastReferencedDate":"2023-08-01T19:01:33.000+0000","SBQQ__Account__c":"0017e00001iZx2xAAC","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T19:01:33.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":"0067e00000NeufSAAR","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHoQqAAK","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE"},"Id":"a0z6s0000016DspAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00200","CreatedDate":"2023-11-09T19:22:50.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:54.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:54.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:22:54.000+0000","LastReferencedDate":"2023-11-09T19:22:54.000+0000","SBQQ__Account__c":"0016s00000fzBcJAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:22:54.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":"0066s00000CfE1dAAF","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY99MAAT","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJn7AAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DspAAE%27 body: encoding: US-ASCII string: '' @@ -2237,12 +2268,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:35 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Set-Cookie: - - BrowserId=1etLuDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:35 + - BrowserId=YhzCU381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2255,7 +2286,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7267/5000000 + - api-usage=304/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2264,11 +2295,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhTAAU"},"Id":"a0v7e000008xWhTAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldQAAQ"},"Id":"a0v6s000000tldQAAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhTAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldQAAQ body: encoding: US-ASCII string: '' @@ -2287,12 +2318,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:35 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Set-Cookie: - - BrowserId=1iNyyDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:35 + - BrowserId=Yifl-381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2305,9 +2336,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7288/5000000 + - api-usage=300/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:33 GMT + - Thu, 09 Nov 2023 19:22:54 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2316,14 +2347,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhTAAU"},"Id":"a0v7e000008xWhTAAU","IsDeleted":false,"Name":"QL-0001744","CreatedDate":"2023-08-01T19:01:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:33.000+0000","SBQQ__Quote__c":"a0z7e00000BDJn7AAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6bAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnISAA0","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldQAAQ"},"Id":"a0v6s000000tldQAAQ","IsDeleted":false,"Name":"QL-0001689","CreatedDate":"2023-11-09T19:22:54.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:54.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:54.000+0000","SBQQ__Quote__c":"a0z6s0000016DspAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRLAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qVAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"Holiday 25.55 coupon","Amount_Off__c":null,"Duration__c":"repeating","Percent_Off__c":25.55,"Duration_In_Months__c":2,"Max_Redemptions__c":3}' @@ -2344,12 +2375,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:36 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Set-Cookie: - - BrowserId=1pPA0jCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:36 + - BrowserId=Yk9D8X81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2362,9 +2393,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7277/5000000 + - api-usage=286/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsbEAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHyEAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2373,14 +2404,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsbEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHyEAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhTAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEsbEAG"}' + string: '{"Quote_Line__c":"a0v6s000000tldQAAQ","Quote_Stripe_Coupon__c":"a1R6s000000uvHyEAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2398,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:36 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Set-Cookie: - - BrowserId=1to_0DCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:36 + - BrowserId=YmO2PH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2416,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7289/5000000 + - api-usage=285/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVwVEAW" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5kEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2427,11 +2458,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVwVEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5kEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2452,12 +2483,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:37 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Set-Cookie: - - BrowserId=1xj2jjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:37 + - BrowserId=YoEpXH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:55 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2472,14 +2503,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7290/5000000 + - api-usage=286/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2498,12 +2529,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:38 GMT + - Thu, 09 Nov 2023 19:22:58 GMT Set-Cookie: - - BrowserId=2Br8qzCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:38 + - BrowserId=Y-zHWX81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2516,7 +2547,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7280/5000000 + - api-usage=289/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2525,12 +2556,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6dAAE"},"Id":"8017e000000nQ6dAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZx2xAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeufSAAR","EffectiveDate":"2023-08-01","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":"00000974","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:38.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":"a0z7e00000BDJn7AAH","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXy9AAG"},"Id":"8016s000001FXy9AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcJAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1dAAF","EffectiveDate":"2023-11-09","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":"00000271","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:56.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:57.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:57.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":"a0z6s0000016DspAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2551,12 +2582,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:39 GMT + - Thu, 09 Nov 2023 19:22:58 GMT Set-Cookie: - - BrowserId=2FZ_XDCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:39 + - BrowserId=Y_0aZ381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2571,14 +2602,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7281/5000000 + - api-usage=301/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG body: encoding: US-ASCII string: '' @@ -2597,12 +2628,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:40 GMT + - Thu, 09 Nov 2023 19:22:58 GMT Set-Cookie: - - BrowserId=2NinaTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:40 + - BrowserId=ZFsZnX81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2615,9 +2646,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7302/5000000 + - api-usage=297/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:39 GMT + - Thu, 09 Nov 2023 19:22:58 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2626,13 +2657,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE"},"Id":"8017e000000nQ6dAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZx2xAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeufSAAR","EffectiveDate":"2023-08-01","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-01T19:01:39.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000974","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:39.000+0000","LastViewedDate":"2023-08-01T19:01:39.000+0000","LastReferencedDate":"2023-08-01T19:01:39.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG"},"Id":"8016s000001FXy9AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcJAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1dAAF","EffectiveDate":"2023-11-09","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-11-09T19:22:58.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000271","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:56.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:58.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:58.000+0000","LastViewedDate":"2023-11-09T19:22:58.000+0000","LastReferencedDate":"2023-11-09T19:22:58.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJn7AAH","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: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DspAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG body: encoding: US-ASCII string: '' @@ -2651,12 +2682,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:40 GMT + - Thu, 09 Nov 2023 19:22:59 GMT Set-Cookie: - - BrowserId=2RbpXzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:40 + - BrowserId=ZHS8An81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2669,9 +2700,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7306/5000000 + - api-usage=283/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:39 GMT + - Thu, 09 Nov 2023 19:22:58 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2680,16 +2711,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE"},"Id":"8017e000000nQ6dAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZx2xAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeufSAAR","EffectiveDate":"2023-08-01","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-01T19:01:39.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000974","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:39.000+0000","LastViewedDate":"2023-08-01T19:01:40.000+0000","LastReferencedDate":"2023-08-01T19:01:40.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG"},"Id":"8016s000001FXy9AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcJAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1dAAF","EffectiveDate":"2023-11-09","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-11-09T19:22:58.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000271","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:56.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:58.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:22:58.000+0000","LastViewedDate":"2023-11-09T19:22:58.000+0000","LastReferencedDate":"2023-11-09T19:22:58.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJn7AAH","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: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DspAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6dAAE"]}' + string: '{"order_ids":["8016s000001FXy9AAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2707,12 +2738,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:40 GMT + - Thu, 09 Nov 2023 19:22:59 GMT Set-Cookie: - - BrowserId=2VVRkjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:40 + - BrowserId=ZIUPyn81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:22:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:22:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2732,27 +2763,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHoQqAAK"},"Id":"0037e00001jHoQqAAK","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"translate_order_with_duration@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:24.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:24.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:24.000+0000","LastViewedDate":"2023-08-01T19:01:24.000+0000","LastReferencedDate":"2023-08-01T19:01:24.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHoQqAAK","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeufSAAR"},"Id":"0067e00000NeufSAAR","IsDeleted":false,"AccountId":"0017e00001iZx2xAAC","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:23.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:26.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:26.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T19:01:23.000+0000","LastReferencedDate":"2023-08-01T19:01:23.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJn7AAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC"},"Id":"0017e00001iZx2xAAC","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZx2xAAC","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:21.000+0000","LastViewedDate":"2023-08-01T19:01:21.000+0000","LastReferencedDate":"2023-08-01T19:01:21.000+0000","CleanStatus":"Pending","SBQQ__AssetQuantitiesCombined__c":false,"SBQQ__CoTermedContractsCombined__c":false,"SBQQ__ContractCoTermination__c":"Never","SBQQ__IgnoreParentContractedPrices__c":false,"SBQQ__PreserveBundle__c":true,"SBQQ__RenewalModel__c":"Contract - Based","SBQQ__RenewalPricingMethod__c":"Same","SBQQ__TaxExempt__c":"No","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"Accounts":["0017e00001iZx2xAAC"],"Opportunities":["0067e00000NeufSAAR"],"Contacts":["0037e00001jHoQqAAK"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHoQqAAK","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":"0067e00000NeufSAAR","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T19:01:37.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY99MAAT"},"Id":"0036s00000WY99MAAT","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"translate_order_with_duration@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:49.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:49.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:49.000+0000","LastViewedDate":"2023-11-09T19:22:49.000+0000","LastReferencedDate":"2023-11-09T19:22:49.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY99MAAT","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF"},"Id":"0066s00000CfE1dAAF","IsDeleted":false,"AccountId":"0016s00000fzBcJAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:49.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:50.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:50.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:22:49.000+0000","LastReferencedDate":"2023-11-09T19:22:49.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DspAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBcJAAU"},"Id":"0016s00000fzBcJAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBcJAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:48.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:48.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:48.000+0000","LastViewedDate":"2023-11-09T19:22:48.000+0000","LastReferencedDate":"2023-11-09T19:22:48.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":["0016s00000fzBcJAAU"],"Opportunities":["0066s00000CfE1dAAF"],"Contacts":["0036s00000WY99MAAT"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY99MAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1dAAF","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:22:55.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZx2xAAC","LastReferencedDate":"2023-08-01T19:01:37.000+0000","LastViewedDate":"2023-08-01T19:01:37.000+0000","SystemModstamp":"2023-08-01T19:01:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:37.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:26.000+0000","Name":"Q-00883","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJn7AAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJn7AAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0"},"Id":"01t7e000009AnISAA0","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:01:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:22.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBcJAAU","LastReferencedDate":"2023-11-09T19:22:55.000+0000","LastViewedDate":"2023-11-09T19:22:55.000+0000","SystemModstamp":"2023-11-09T19:22:55.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:55.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:50.000+0000","Name":"Q-00200","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DspAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DspAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qVAAQ"},"Id":"01t6s000004g3qVAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:22:49.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:49.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:49.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/01u7e00000Isi6bAAB"},"Id":"01u7e00000Isi6bAAB","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnISAA0","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T19:01:22.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:22.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:22.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/a0v7e000008xWhTAAU"},"Id":"a0v7e000008xWhTAAU","IsDeleted":false,"Name":"QL-0001744","CreatedDate":"2023-08-01T19:01:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:33.000+0000","SBQQ__Quote__c":"a0z7e00000BDJn7AAH","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":"01u7e00000Isi6bAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnISAA0","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-01","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-01 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":["01t7e000009AnISAA0"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWhTAAU","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":"0000000967","SystemModstamp":"2023-08-01T19:01:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:39.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:38.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6bAAB","OrderId":"8017e000000nQ6dAAE","IsDeleted":false,"Product2Id":"01t7e000009AnISAA0","Id":"8027e000001bPiOAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPiOAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NeufSAAR"],"Accounts":["0017e00001iZx2xAAC"],"OrderItems":["8027e000001bPiOAAU"],"Quotes":["a0z7e00000BDJn7AAH"],"Opportunity":{"Id":"0067e00000NeufSAAR","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeufSAAR","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":"a0z7e00000BDJn7AAH","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/v59.0/sobjects/PricebookEntry/01u6s000006MyRLAA0"},"Id":"01u6s000006MyRLAA0","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qVAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:22:49.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:49.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:49.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldQAAQ"},"Id":"a0v6s000000tldQAAQ","IsDeleted":false,"Name":"QL-0001689","CreatedDate":"2023-11-09T19:22:54.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:54.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:54.000+0000","SBQQ__Quote__c":"a0z6s0000016DspAAE","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":"01u6s000006MyRLAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qVAAQ","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-11-09","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-11-09 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":["01t6s000004g3qVAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tldQAAQ","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":"0000000500","SystemModstamp":"2023-11-09T19:22:58.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:58.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:57.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRLAA0","OrderId":"8016s000001FXy9AAG","IsDeleted":false,"Product2Id":"01t6s000004g3qVAAQ","Id":"8026s0000014MvYAAU","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvYAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1dAAF"],"Accounts":["0016s00000fzBcJAAU"],"OrderItems":["8026s0000014MvYAAU"],"Quotes":["a0z6s0000016DspAAE"],"Opportunity":{"Id":"0066s00000CfE1dAAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1dAAF","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":"a0z6s0000016DspAAE","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T19:01:40.000+0000","LastViewedDate":"2023-08-01T19:01:40.000+0000","SystemModstamp":"2023-08-01T19:01:39.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:39.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:01:37.000+0000","TotalAmount":1440.00,"OrderNumber":"00000974","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T19:01:39.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000NeufSAAR","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZx2xAAC","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6dAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:22:59.000+0000","LastViewedDate":"2023-11-09T19:22:59.000+0000","SystemModstamp":"2023-11-09T19:22:58.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:58.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:22:56.000+0000","TotalAmount":1440.00,"OrderNumber":"00000271","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:22:58.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1dAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBcJAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXy9AAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXy9AAG","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 @@ -2769,10 +2800,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6dAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXy9AAG%27%0A body: encoding: US-ASCII string: '' @@ -2791,12 +2822,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:43 GMT + - Thu, 09 Nov 2023 19:23:00 GMT Set-Cookie: - - BrowserId=2px3NTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:43 + - BrowserId=ZUYVNH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2809,7 +2840,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7315/5000000 + - api-usage=305/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2818,11 +2849,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE"},"Type":"New","OpportunityId":"0067e00000NeufSAAR","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeufSAAR"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG"},"Type":"New","OpportunityId":"0066s00000CfE1dAAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1dAAF"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6dAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXy9AAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2841,12 +2872,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:43 GMT + - Thu, 09 Nov 2023 19:23:00 GMT Set-Cookie: - - BrowserId=2teEcTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:43 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:43 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:43 + - BrowserId=ZVYakX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:00 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:00 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:00 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2859,7 +2890,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7316/5000000 + - api-usage=287/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2868,14 +2899,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE"},"Id":"8017e000000nQ6dAAE"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG"},"Id":"8016s000001FXy9AAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZx2xAAC&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZx2xAAC + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBcJAAU&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBcJAAU headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2884,13 +2915,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - fd4824af-e6f0-456f-99d9-1a731f105470 + - 9b304e38-90bc-4b5c-9ce0-fe038ee74d58 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -2905,37 +2936,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:43 GMT + - Thu, 09 Nov 2023 19:23:00 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - fd4824af-e6f0-456f-99d9-1a731f105470 + - 9b304e38-90bc-4b5c-9ce0-fe038ee74d58 Original-Request: - - req_0Yomxu76VCh2nK + - req_f7QJd99XPs3siE Request-Id: - - req_0Yomxu76VCh2nK + - req_f7QJd99XPs3siE 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: @@ -2944,11 +2982,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON85GLEKytHuZF", + "id": "cus_Oyb021fMOffN4m", "object": "customer", "address": null, "balance": 0, - "created": 1690916503, + "created": 1699557780, "currency": null, "default_currency": null, "default_source": null, @@ -2956,7 +2994,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "A3834242", + "invoice_prefix": "CDE22D54", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -2965,10 +3003,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZx2xAAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZx2xAAC" + "salesforce_account_id": "0016s00000fzBcJAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBcJAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -2976,13 +3014,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZx2xAAC + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBcJAAU body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON85GLEKytHuZF"}' + string: '{"Stripe_ID__c":"cus_Oyb021fMOffN4m"}' headers: User-Agent: - Faraday v2.4.0 @@ -3000,12 +3038,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:44 GMT + - Thu, 09 Nov 2023 19:23:01 GMT Set-Cookie: - - BrowserId=20SevzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:44 + - BrowserId=ZbPyuX81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3020,17 +3058,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7312/5000000 + - api-usage=296/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnISAA0&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnISAA0 + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qVAAQ&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qVAAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3039,15 +3077,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0Yomxu76VCh2nK","request_duration_ms":315}}' + - '{"last_request_metrics":{"request_id":"req_f7QJd99XPs3siE","request_duration_ms":439}}' Idempotency-Key: - - 3cfc9153-0926-4483-bdc0-efbf476c7420 + - ad472b28-4e0f-4e2b-81a7-267977046c25 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3062,37 +3100,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:44 GMT + - Thu, 09 Nov 2023 19:23:01 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 3cfc9153-0926-4483-bdc0-efbf476c7420 + - ad472b28-4e0f-4e2b-81a7-267977046c25 Original-Request: - - req_AVe466KoVh1JhB + - req_z6lh1v4IUm4YNg Request-Id: - - req_AVe466KoVh1JhB + - req_z6lh1v4IUm4YNg 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: @@ -3101,39 +3146,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON85P56hvQMpgN", + "id": "prod_Oyb0fOJ36E0vz3", "object": "product", "active": true, "attributes": [], - "created": 1690916504, + "created": 1699557781, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnISAA0", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnISAA0" + "salesforce_product2_id": "01t6s000004g3qVAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qVAAQ" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-93", + "sku": "rest-product2--2023-11-09-000000-utc-7", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916504, + "updated": 1699557781, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qVAAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON85P56hvQMpgN"}' + string: '{"Stripe_ID__c":"prod_Oyb0fOJ36E0vz3"}' headers: User-Agent: - Faraday v2.4.0 @@ -3151,12 +3197,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:44 GMT + - Thu, 09 Nov 2023 19:23:01 GMT Set-Cookie: - - BrowserId=27XWizCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:44 + - BrowserId=ZgW7dH81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3171,14 +3217,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7326/5000000 + - api-usage=284/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnISAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qVAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3197,12 +3243,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:45 GMT + - Thu, 09 Nov 2023 19:23:01 GMT Set-Cookie: - - BrowserId=3AOoXTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:45 + - BrowserId=ZiOkJH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3215,7 +3261,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7313/5000000 + - api-usage=302/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3225,10 +3271,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnISAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qVAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3247,12 +3293,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:45 GMT + - Thu, 09 Nov 2023 19:23:01 GMT Set-Cookie: - - BrowserId=3Dsz8DCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:45 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:45 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:45 + - BrowserId=ZjHUon81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3265,7 +3311,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7313/5000000 + - api-usage=288/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3275,10 +3321,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qVAAQ body: encoding: US-ASCII string: '' @@ -3297,12 +3343,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:46 GMT + - Thu, 09 Nov 2023 19:23:02 GMT Set-Cookie: - - BrowserId=3H26vjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:46 + - BrowserId=Zj9pb381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3315,9 +3361,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7317/5000000 + - api-usage=306/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:45 GMT + - Thu, 09 Nov 2023 19:23:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3326,15 +3372,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnISAA0"},"Id":"01t7e000009AnISAA0","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:01:21.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:45.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:45.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/01t6s000004g3qVAAQ"},"Id":"01t6s000004g3qVAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:22:49.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:01.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:01.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_ON85P56hvQMpgN","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON85P56hvQMpgN"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_Oyb0fOJ36E0vz3","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_Oyb0fOJ36E0vz3"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiOAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvYAAU%27%0A body: encoding: US-ASCII string: '' @@ -3353,12 +3399,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:46 GMT + - Thu, 09 Nov 2023 19:23:02 GMT Set-Cookie: - - BrowserId=3LxxXjCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:46 + - BrowserId=ZlX-cn81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3371,7 +3417,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7312/5000000 + - api-usage=291/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3381,10 +3427,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiOAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvYAAU%27%0A body: encoding: US-ASCII string: '' @@ -3403,12 +3449,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:47 GMT + - Thu, 09 Nov 2023 19:23:02 GMT Set-Cookie: - - BrowserId=3PhBwDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:47 + - BrowserId=ZmJa3H81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3421,7 +3467,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7314/5000000 + - api-usage=303/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3431,10 +3477,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnISAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qVAAQ%27%0A body: encoding: US-ASCII string: '' @@ -3453,12 +3499,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:47 GMT + - Thu, 09 Nov 2023 19:23:02 GMT Set-Cookie: - - BrowserId=3TEsQDCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:47 + - BrowserId=ZnCyxH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3471,7 +3517,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7313/5000000 + - api-usage=304/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3481,13 +3527,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON85P56hvQMpgN&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6bAAB&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6bAAB + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_Oyb0fOJ36E0vz3&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRLAA0&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRLAA0 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3495,16 +3541,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_AVe466KoVh1JhB","request_duration_ms":248}}' Idempotency-Key: - - 6f0ea531-bbcf-4ad0-97d6-8e41b039c6aa + - 800367b0-5cfe-4d50-a10c-6b182fb915ee 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3519,37 +3563,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:47 GMT + - Thu, 09 Nov 2023 19:23:02 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 6f0ea531-bbcf-4ad0-97d6-8e41b039c6aa + - 800367b0-5cfe-4d50-a10c-6b182fb915ee Original-Request: - - req_f7X1NOtp2pHq7o + - req_nvmuqfjCDuFmZZ Request-Id: - - req_f7X1NOtp2pHq7o + - req_nvmuqfjCDuFmZZ 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: @@ -3558,21 +3609,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNpHIsgf92XbAO5uanNmty", + "id": "price_1OAdogIsgf92XbAOIotPrpV5", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916507, + "created": 1699557782, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6bAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6bAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRLAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRLAA0" }, "nickname": null, - "product": "prod_ON85P56hvQMpgN", + "product": "prod_Oyb0fOJ36E0vz3", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3587,13 +3638,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6bAAB + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRLAA0 body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNpHIsgf92XbAO5uanNmty"}' + string: '{"Stripe_ID__c":"price_1OAdogIsgf92XbAOIotPrpV5"}' headers: User-Agent: - Faraday v2.4.0 @@ -3611,12 +3662,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:48 GMT + - Thu, 09 Nov 2023 19:23:02 GMT Set-Cookie: - - BrowserId=3Y5AGTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:48 + - BrowserId=Zq7NM381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3631,14 +3682,64 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7329/5000000 + - api-usage=307/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvYAAU%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:23:02 GMT + Set-Cookie: + - BrowserId=ZsGR7381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23: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=305/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA"},"Id":"a1N6s00000113i5EAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPiOAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tldQAAQ%27 body: encoding: US-ASCII string: '' @@ -3657,12 +3758,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:48 GMT + - Thu, 09 Nov 2023 19:23:02 GMT Set-Cookie: - - BrowserId=3c0dxDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:48 + - BrowserId=Zs14gH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3675,7 +3776,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7327/5000000 + - api-usage=292/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3684,11 +3785,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI"},"Id":"a1N7e000002flPjEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5kEAC"},"Id":"a1P6s000001Bk5kEAC"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA body: encoding: US-ASCII string: '' @@ -3707,12 +3808,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:48 GMT + - Thu, 09 Nov 2023 19:23:03 GMT Set-Cookie: - - BrowserId=3gW6zzCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:48 + - BrowserId=Zt6PsH81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3725,9 +3826,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7333/5000000 + - api-usage=287/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:39 GMT + - Thu, 09 Nov 2023 19:22:58 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3736,12 +3837,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI"},"Id":"a1N7e000002flPjEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0136","CreatedDate":"2023-08-01T19:01:39.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:39.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday - 25.55 coupon","Order_Item__c":"8027e000001bPiOAAU","Order__c":null,"Percent_Off__c":25.55,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsbEAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA"},"Id":"a1N6s00000113i5EAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0012","CreatedDate":"2023-11-09T19:22:58.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:58.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:58.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday + 25.55 coupon","Order_Item__c":"8026s0000014MvYAAU","Order__c":null,"Percent_Off__c":25.55,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHyEAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsbEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHyEAI body: encoding: US-ASCII string: '' @@ -3760,12 +3861,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:49 GMT + - Thu, 09 Nov 2023 19:23:03 GMT Set-Cookie: - - BrowserId=3j26lTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:49 + - BrowserId=ZvGiHX81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3778,9 +3879,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7329/5000000 + - api-usage=297/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:36 GMT + - Thu, 09 Nov 2023 19:22:55 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3789,15 +3890,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsbEAG"},"Id":"a1R7e000007JEsbEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0116","CreatedDate":"2023-08-01T19:01:36.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:36.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHyEAI"},"Id":"a1R6s000000uvHyEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0010","CreatedDate":"2023-11-09T19:22:55.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:22:55.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:22:55.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday 25.55 coupon","Percent_Off__c":25.55,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=Holiday+25.55+coupon&percent_off=25.55&duration=repeating&duration_in_months=2&max_redemptions=3&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPjEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPjEAI + string: name=Holiday+25.55+coupon&percent_off=25.55&duration=repeating&duration_in_months=2&max_redemptions=3&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113i5EAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113i5EAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3806,15 +3907,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_f7X1NOtp2pHq7o","request_duration_ms":248}}' + - '{"last_request_metrics":{"request_id":"req_z6lh1v4IUm4YNg","request_duration_ms":282}}' Idempotency-Key: - - 2042238e-9045-4bc8-a486-28d55216d0c3 + - d648f612-ccaa-41ca-990f-cd23a40e5f5f 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3829,37 +3930,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:49 GMT + - Thu, 09 Nov 2023 19:23:03 GMT Content-Type: - application/json Content-Length: - - '542' + - '537' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 2042238e-9045-4bc8-a486-28d55216d0c3 + - d648f612-ccaa-41ca-990f-cd23a40e5f5f Original-Request: - - req_cln7I0GAOF5KYv + - req_B3KxzltpD3H8lx Request-Id: - - req_cln7I0GAOF5KYv + - req_B3KxzltpD3H8lx 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: @@ -3868,18 +3976,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "S3iHcLQS", + "id": "Ei2ZkeOo", "object": "coupon", "amount_off": null, - "created": 1690916509, + "created": 1699557783, "currency": null, "duration": "repeating", "duration_in_months": 2, "livemode": false, "max_redemptions": 3, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPjEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPjEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113i5EAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113i5EAA" }, "name": "Holiday 25.55 coupon", "percent_off": 25.55, @@ -3887,13 +3995,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"S3iHcLQS"}' + string: '{"Stripe_ID__c":"Ei2ZkeOo"}' headers: User-Agent: - Faraday v2.4.0 @@ -3911,12 +4019,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:49 GMT + - Thu, 09 Nov 2023 19:23:03 GMT Set-Cookie: - - BrowserId=3pwtlDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:49 + - BrowserId=ZyYgKH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3931,14 +4039,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7334/5000000 + - api-usage=306/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -3957,12 +4065,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:50 GMT + - Thu, 09 Nov 2023 19:23:03 GMT Set-Cookie: - - BrowserId=3tRVGzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:50 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:50 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:50 + - BrowserId=ZzfTKX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3975,11 +4083,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7330/5000000 + - api-usage=295/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4096,7 +4204,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4107,14 +4215,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4282,7 +4388,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 @@ -4298,7 +4405,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4316,9 +4425,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4462,9 +4570,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4586,9 +4694,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 @@ -4633,13 +4750,14 @@ http_interactions: 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":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 + 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":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 @@ -4875,7 +4993,8 @@ http_interactions: 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":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 + 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 @@ -5061,7 +5180,8 @@ http_interactions: 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":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 + 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 @@ -5072,7 +5192,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5144,7 +5269,8 @@ http_interactions: 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":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 + 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 @@ -5190,7 +5316,8 @@ http_interactions: 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":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 + 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 @@ -5250,7 +5377,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5275,7 +5402,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5331,13 +5469,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsbEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHyEAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"S3iHcLQS"}' + string: '{"Stripe_ID__c":"Ei2ZkeOo"}' headers: User-Agent: - Faraday v2.4.0 @@ -5355,12 +5493,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:51 GMT + - Thu, 09 Nov 2023 19:23:04 GMT Set-Cookie: - - BrowserId=34XyMDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:51 + - BrowserId=Z4JJuH81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5375,14 +5513,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7339/5000000 + - api-usage=296/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5401,12 +5539,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:51 GMT + - Thu, 09 Nov 2023 19:23:04 GMT Set-Cookie: - - BrowserId=38HB-zCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:51 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:51 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:51 + - BrowserId=Z5NgpH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5419,11 +5557,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7330/5000000 + - api-usage=293/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5540,7 +5678,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5551,14 +5689,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5726,7 +5862,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 @@ -5742,7 +5879,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -5760,9 +5899,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -5906,9 +6044,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6030,9 +6168,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 @@ -6077,13 +6224,14 @@ http_interactions: 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":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 + 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":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 @@ -6319,7 +6467,8 @@ http_interactions: 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":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 + 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 @@ -6505,7 +6654,8 @@ http_interactions: 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":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 + 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 @@ -6516,7 +6666,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6588,7 +6743,8 @@ http_interactions: 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":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 + 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 @@ -6634,7 +6790,8 @@ http_interactions: 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":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 + 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 @@ -6694,7 +6851,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6719,7 +6876,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -6775,30 +6943,18 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNpHIsgf92XbAO5uanNmty + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXy9AAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_cln7I0GAOF5KYv","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"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -6808,75 +6964,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 19:01:52 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_QNbENe4iKEd1Kb - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:23:04 GMT + Set-Cookie: + - BrowserId=Z-1Af381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=294/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNpHIsgf92XbAO5uanNmty", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916507, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6bAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6bAAB" - }, - "nickname": null, - "product": "prod_ON85P56hvQMpgN", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6dAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DspAAE%27 body: encoding: US-ASCII string: '' @@ -6895,12 +7015,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:52 GMT + - Thu, 09 Nov 2023 19:23:04 GMT Set-Cookie: - - BrowserId=4GzPfzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:52 + - BrowserId=Z_iLbX81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:04 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6913,7 +7033,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7343/5000000 + - api-usage=307/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -6923,10 +7043,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON85GLEKytHuZF?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oyb021fMOffN4m?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -6938,13 +7058,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_QNbENe4iKEd1Kb","request_duration_ms":187}}' + - '{"last_request_metrics":{"request_id":"req_nvmuqfjCDuFmZZ","request_duration_ms":280}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -6959,31 +7079,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:53 GMT + - Thu, 09 Nov 2023 19:23: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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_xBQR5NYxpbPW1T + - req_DRiR03H5BWtQLd Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -6992,11 +7120,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON85GLEKytHuZF", + "id": "cus_Oyb021fMOffN4m", "object": "customer", "address": null, "balance": 0, - "created": 1690916503, + "created": 1699557780, "currency": null, "default_currency": null, "default_source": null, @@ -7004,7 +7132,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "A3834242", + "invoice_prefix": "CDE22D54", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7013,10 +7141,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZx2xAAC", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZx2xAAC" + "salesforce_account_id": "0016s00000fzBcJAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBcJAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7024,13 +7152,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdogIsgf92XbAOIotPrpV5 + 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_DRiR03H5BWtQLd","request_duration_ms":199}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:23:05 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_EQ7Cn083j5WRtF + 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_1OAdogIsgf92XbAOIotPrpV5", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557782, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRLAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRLAA0" + }, + "nickname": null, + "product": "prod_Oyb0fOJ36E0vz3", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6dAAE&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6dAAE&start_date=1690848000&customer=cus_ON85GLEKytHuZF&phases[0][items][0][price]=price_1NaNpHIsgf92XbAO5uanNmty&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPiOAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPiOAAU&phases[0][items][0][discounts][0][coupon]=S3iHcLQS&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6dAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6dAAE + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXy9AAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXy9AAG&start_date=1699488000&customer=cus_Oyb021fMOffN4m&phases[0][items][0][price]=price_1OAdogIsgf92XbAOIotPrpV5&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvYAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvYAAU&phases[0][items][0][discounts][0][coupon]=Ei2ZkeOo&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXy9AAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXy9AAG headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7039,15 +7272,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_xBQR5NYxpbPW1T","request_duration_ms":186}}' + - '{"last_request_metrics":{"request_id":"req_B3KxzltpD3H8lx","request_duration_ms":242}}' Idempotency-Key: - - 969397f6-a191-41bc-9f43-fc53bf1abc3c + - c31da8e0-00f1-44a6-993e-b7ceefe1b1fb 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7062,37 +7295,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:53 GMT + - Thu, 09 Nov 2023 19:23:05 GMT Content-Type: - application/json Content-Length: - - '2573' + - '2558' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 969397f6-a191-41bc-9f43-fc53bf1abc3c + - c31da8e0-00f1-44a6-993e-b7ceefe1b1fb Original-Request: - - req_5W6dEvBsAMLtHj + - req_dXoDhK9pxjqutr Request-Id: - - req_5W6dEvBsAMLtHj + - req_dXoDhK9pxjqutr 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: @@ -7101,17 +7342,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNpNIsgf92XbAOfm07REMK", + "id": "sub_sched_1OAdojIsgf92XbAOd1819Jqe", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916513, + "created": 1699557785, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON85GLEKytHuZF", + "customer": "cus_Oyb021fMOffN4m", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7130,8 +7371,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6dAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6dAAE" + "salesforce_order_id": "8016s000001FXy9AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy9AAG" }, "phases": [ { @@ -7146,34 +7387,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "S3iHcLQS", + "coupon": "Ei2ZkeOo", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiOAAU" + "salesforce_order_item_id": "8026s0000014MvYAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvYAAU" }, - "plan": "price_1NaNpHIsgf92XbAO5uanNmty", - "price": "price_1NaNpHIsgf92XbAO5uanNmty", + "plan": "price_1OAdogIsgf92XbAOIotPrpV5", + "price": "price_1OAdogIsgf92XbAOIotPrpV5", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6dAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6dAAE" + "salesforce_order_id": "8016s000001FXy9AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy9AAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7183,16 +7424,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNpNIsgf92XbAOqumwN60R", + "subscription": "sub_1OAdojIsgf92XbAOPRuiqwaI", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNpNIsgf92XbAOfm07REMK"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdojIsgf92XbAOd1819Jqe"}' headers: User-Agent: - Faraday v2.4.0 @@ -7210,12 +7451,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:01:54 GMT + - Thu, 09 Nov 2023 19:23:06 GMT Set-Cookie: - - BrowserId=4SrIgTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:54 + - BrowserId=aKDY9H81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7230,18 +7471,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7351/5000000 + - api-usage=298/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6dAAE-8017e000000nQ6dAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXy9AAG-8016s000001FXy9AAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6dAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6dAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNpNIsgf92XbAOfm07REMK","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXy9AAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXy9AAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdojIsgf92XbAOd1819Jqe","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_dXoDhK9pxjqutr"}' headers: User-Agent: - Faraday v2.4.0 @@ -7259,12 +7500,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:01:54 GMT + - Thu, 09 Nov 2023 19:23:06 GMT Set-Cookie: - - BrowserId=4X94STCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:54 + - BrowserId=aMKRyH81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7277,20 +7518,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7352/5000000 + - api-usage=299/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrLzEAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxcwEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrLzEAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000KxcwEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNpNIsgf92XbAOfm07REMK?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdojIsgf92XbAOd1819Jqe?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7302,13 +7543,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_5W6dEvBsAMLtHj","request_duration_ms":675}}' + - '{"last_request_metrics":{"request_id":"req_EQ7Cn083j5WRtF","request_duration_ms":190}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7323,31 +7564,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:54 GMT + - Thu, 09 Nov 2023 19:23:06 GMT Content-Type: - application/json Content-Length: - - '3653' + - '3633' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_kVdLA5iM3qCeKB + - req_NxiO0EplH00sDl Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7356,17 +7605,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNpNIsgf92XbAOfm07REMK", + "id": "sub_sched_1OAdojIsgf92XbAOd1819Jqe", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916513, + "created": 1699557785, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON85GLEKytHuZF", + "customer": "cus_Oyb021fMOffN4m", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7385,8 +7634,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6dAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6dAAE" + "salesforce_order_id": "8016s000001FXy9AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy9AAG" }, "phases": [ { @@ -7401,38 +7650,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "S3iHcLQS", + "coupon": "Ei2ZkeOo", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiOAAU" + "salesforce_order_item_id": "8026s0000014MvYAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvYAAU" }, - "plan": "price_1NaNpHIsgf92XbAO5uanNmty", + "plan": "price_1OAdogIsgf92XbAOIotPrpV5", "price": { - "id": "price_1NaNpHIsgf92XbAO5uanNmty", + "id": "price_1OAdogIsgf92XbAOIotPrpV5", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916507, + "created": 1699557782, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6bAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6bAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRLAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRLAA0" }, "nickname": null, - "product": "prod_ON85P56hvQMpgN", + "product": "prod_Oyb0fOJ36E0vz3", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7452,12 +7701,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6dAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6dAAE" + "salesforce_order_id": "8016s000001FXy9AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy9AAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7467,13 +7716,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNpNIsgf92XbAOqumwN60R", + "subscription": "sub_1OAdojIsgf92XbAOPRuiqwaI", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG body: encoding: US-ASCII string: '' @@ -7492,12 +7741,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:55 GMT + - Thu, 09 Nov 2023 19:23:06 GMT Set-Cookie: - - BrowserId=4eA1CDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:55 + - BrowserId=aPpEJH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7510,9 +7759,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7353/5000000 + - api-usage=308/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:54 GMT + - Thu, 09 Nov 2023 19:23:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7521,13 +7770,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6dAAE"},"Id":"8017e000000nQ6dAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZx2xAAC","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeufSAAR","EffectiveDate":"2023-08-01","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-01T19:01:39.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000974","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:01:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:01:54.000+0000","LastViewedDate":"2023-08-01T19:01:54.000+0000","LastReferencedDate":"2023-08-01T19:01:54.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXy9AAG"},"Id":"8016s000001FXy9AAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcJAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1dAAF","EffectiveDate":"2023-11-09","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-11-09T19:22:58.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000271","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:22:56.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:06.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:06.000+0000","LastViewedDate":"2023-11-09T19:23:06.000+0000","LastReferencedDate":"2023-11-09T19:23:06.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJn7AAH","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_1NaNpNIsgf92XbAOfm07REMK","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NaNpNIsgf92XbAOfm07REMK"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DspAAE","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_1OAdojIsgf92XbAOd1819Jqe","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAdojIsgf92XbAOd1819Jqe"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNpNIsgf92XbAOfm07REMK + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdojIsgf92XbAOd1819Jqe body: encoding: US-ASCII string: '' @@ -7539,13 +7788,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kVdLA5iM3qCeKB","request_duration_ms":207}}' + - '{"last_request_metrics":{"request_id":"req_NxiO0EplH00sDl","request_duration_ms":205}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7560,31 +7809,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:55 GMT + - Thu, 09 Nov 2023 19:23:06 GMT Content-Type: - application/json Content-Length: - - '2573' + - '2558' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_chAaw7FKCMCyTH + - req_Wu1lpeag3Lftb1 Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7593,17 +7850,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNpNIsgf92XbAOfm07REMK", + "id": "sub_sched_1OAdojIsgf92XbAOd1819Jqe", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916513, + "created": 1699557785, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON85GLEKytHuZF", + "customer": "cus_Oyb021fMOffN4m", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7622,8 +7879,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6dAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6dAAE" + "salesforce_order_id": "8016s000001FXy9AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy9AAG" }, "phases": [ { @@ -7638,34 +7895,34 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "S3iHcLQS", + "coupon": "Ei2ZkeOo", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiOAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiOAAU" + "salesforce_order_item_id": "8026s0000014MvYAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvYAAU" }, - "plan": "price_1NaNpHIsgf92XbAO5uanNmty", - "price": "price_1NaNpHIsgf92XbAO5uanNmty", + "plan": "price_1OAdogIsgf92XbAOIotPrpV5", + "price": "price_1OAdogIsgf92XbAOIotPrpV5", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6dAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6dAAE" + "salesforce_order_id": "8016s000001FXy9AAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXy9AAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7675,13 +7932,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNpNIsgf92XbAOqumwN60R", + "subscription": "sub_1OAdojIsgf92XbAOPRuiqwaI", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/S3iHcLQS + uri: https://api.stripe.com/v1/coupons/Ei2ZkeOo body: encoding: US-ASCII string: '' @@ -7693,13 +7950,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_chAaw7FKCMCyTH","request_duration_ms":238}}' + - '{"last_request_metrics":{"request_id":"req_Wu1lpeag3Lftb1","request_duration_ms":229}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7714,31 +7971,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:01:55 GMT + - Thu, 09 Nov 2023 19:23:07 GMT Content-Type: - application/json Content-Length: - - '542' + - '537' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_PzQk71BleqchRE + - req_8hGzB0LR6vhfBD Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7747,18 +8011,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "S3iHcLQS", + "id": "Ei2ZkeOo", "object": "coupon", "amount_off": null, - "created": 1690916509, + "created": 1699557783, "currency": null, "duration": "repeating", "duration_in_months": 2, "livemode": false, "max_redemptions": 3, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPjEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPjEAI" + "salesforce_order_stripe_coupon_id": "a1N6s00000113i5EAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113i5EAA" }, "name": "Holiday 25.55 coupon", "percent_off": 25.55, @@ -7766,10 +8030,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JEsbEAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvHyEAI%27 body: encoding: US-ASCII string: '' @@ -7788,12 +8052,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:56 GMT + - Thu, 09 Nov 2023 19:23:07 GMT Set-Cookie: - - BrowserId=4l6M1zCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:56 + - BrowserId=aUpfqH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7806,7 +8070,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7344/5000000 + - api-usage=295/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7815,11 +8079,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI"},"Id":"a1N7e000002flPjEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA"},"Id":"a1N6s00000113i5EAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA body: encoding: US-ASCII string: '' @@ -7838,12 +8102,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:56 GMT + - Thu, 09 Nov 2023 19:23:07 GMT Set-Cookie: - - BrowserId=4pS4JDCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:56 + - BrowserId=aVfM9n81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7856,9 +8120,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7354/5000000 + - api-usage=300/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:49 GMT + - Thu, 09 Nov 2023 19:23:03 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7867,12 +8131,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPjEAI"},"Id":"a1N7e000002flPjEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0136","CreatedDate":"2023-08-01T19:01:39.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:49.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:49.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday - 25.55 coupon","Order_Item__c":"8027e000001bPiOAAU","Order__c":null,"Percent_Off__c":25.55,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsbEAG","Stripe_ID__c":"S3iHcLQS","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/S3iHcLQS"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113i5EAA"},"Id":"a1N6s00000113i5EAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0012","CreatedDate":"2023-11-09T19:22:58.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:03.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:03.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday + 25.55 coupon","Order_Item__c":"8026s0000014MvYAAU","Order__c":null,"Percent_Off__c":25.55,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHyEAI","Stripe_ID__c":"Ei2ZkeOo","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/Ei2ZkeOo"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsbEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHyEAI body: encoding: US-ASCII string: '' @@ -7891,12 +8155,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:01:56 GMT + - Thu, 09 Nov 2023 19:23:07 GMT Set-Cookie: - - BrowserId=4ssKMTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:01:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:01:56 + - BrowserId=aWX93381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7909,9 +8173,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7347/5000000 + - api-usage=285/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:01:51 GMT + - Thu, 09 Nov 2023 19:23:04 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7920,60 +8184,7 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsbEAG"},"Id":"a1R7e000007JEsbEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0116","CreatedDate":"2023-08-01T19:01:36.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:01:51.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:01:51.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday - 25.55 coupon","Percent_Off__c":25.55,"Stripe_ID__c":"S3iHcLQS","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/S3iHcLQS"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6dAAE-8017e000000nQ6dAAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6dAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6dAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNpNIsgf92XbAOfm07REMK","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_5W6dEvBsAMLtHj"}' - 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: - - Wed, 11 Oct 2023 16:38:55 GMT - Set-Cookie: - - BrowserId=q27JGGhUEe6pQ1GpD6LuGQ; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38: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 - Sforce-Limit-Info: - - api-usage=116/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCrEUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCrEUAW","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHyEAI"},"Id":"a1R6s000000uvHyEAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0010","CreatedDate":"2023-11-09T19:22:55.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:04.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:04.000+0000","Amount_Off__c":null,"Duration_In_Months__c":2.0,"Duration__c":"repeating","Max_Redemptions__c":3.0,"Name__c":"Holiday + 25.55 coupon","Percent_Off__c":25.55,"Stripe_ID__c":"Ei2ZkeOo","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/Ei2ZkeOo"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_multiple_coupons_on_an_order_line.yml b/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_multiple_coupons_on_an_order_line.yml index 20bffc5842..dd5ba748c7 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_multiple_coupons_on_an_order_line.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/translate_sf_order_with_multiple_coupons_on_an_order_line.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:02:59 GMT + - Thu, 09 Nov 2023 19:23:07 GMT Set-Cookie: - - BrowserId=CB8qOzCeEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:02:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:02:59 + - BrowserId=aY8xIX81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7372/5000000 + - api-usage=308/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBcKAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZwRMAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBcKAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:00 GMT + - Thu, 09 Nov 2023 19:23:07 GMT Set-Cookie: - - BrowserId=CHyzLzCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:00 + - BrowserId=abd5uH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7373/5000000 + - api-usage=334/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qjAAA" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnQBAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qjAAA","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:00 GMT + - Thu, 09 Nov 2023 19:23:08 GMT Set-Cookie: - - BrowserId=CMrTVDCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:00 + - BrowserId=admArX81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7373/5000000 + - api-usage=335/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnQBAA0","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qjAAA","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:00 GMT + - Thu, 09 Nov 2023 19:23:08 GMT Set-Cookie: - - BrowserId=CQOWkDCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:00 + - BrowserId=aeVnd381Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7374/5000000 + - api-usage=309/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6qAAB" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRQAA0" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,11 +212,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6qAAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyRQAA0","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -235,12 +235,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:01 GMT + - Thu, 09 Nov 2023 19:23:08 GMT Set-Cookie: - - BrowserId=CUGJrTCeEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:01 + - BrowserId=afrD_n81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -253,7 +253,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7368/5000000 + - api-usage=321/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -262,14 +262,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwRMAA0"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBcKAAU"}' headers: User-Agent: - Faraday v2.4.0 @@ -287,12 +287,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:01 GMT + - Thu, 09 Nov 2023 19:23:08 GMT Set-Cookie: - - BrowserId=CXwiGjCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:01 + - BrowserId=aggKVX81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -305,9 +305,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7374/5000000 + - api-usage=311/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NeupgAAB" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1iAAF" Content-Type: - application/json;charset=UTF-8 Vary: @@ -316,11 +316,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NeupgAAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1iAAF","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"translate_multiple_coupons_order_line@example.com"}' @@ -341,12 +341,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:02 GMT + - Thu, 09 Nov 2023 19:23:08 GMT Set-Cookie: - - BrowserId=CcoafDCeEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:02 + - BrowserId=ai1snH81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -359,9 +359,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7373/5000000 + - api-usage=326/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHoHTAA0" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY99RAAT" Content-Type: - application/json;charset=UTF-8 Vary: @@ -370,14 +370,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHoHTAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY99RAAT","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000NeupgAAB","SBQQ__PrimaryContact__c":"0037e00001jHoHTAA0","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1iAAF","SBQQ__PrimaryContact__c":"0036s00000WY99RAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -395,12 +395,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:02 GMT + - Thu, 09 Nov 2023 19:23:08 GMT Set-Cookie: - - BrowserId=ChY-jjCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:02 + - BrowserId=ak_B8n81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,9 +413,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7364/5000000 + - api-usage=322/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE" Content-Type: - application/json;charset=UTF-8 Vary: @@ -424,11 +424,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJnDAAX","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DsuAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -447,12 +447,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:03 GMT + - Thu, 09 Nov 2023 19:23:09 GMT Set-Cookie: - - BrowserId=CqU4QjCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:03 + - BrowserId=at9Xjn81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,7 +465,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7365/5000000 + - api-usage=327/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -474,11 +474,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJnDAAX + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DsuAAE body: encoding: US-ASCII string: '' @@ -497,12 +497,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:04 GMT + - Thu, 09 Nov 2023 19:23:09 GMT Set-Cookie: - - BrowserId=Cttj4zCeEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:04 + - BrowserId=auzFU381Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -522,17 +522,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"Id\":\"a0z7e00000BDJnDAAX\",\"Name\":\"Q-00885\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwRMAA0\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"Id\":\"a0z6s0000016DsuAAE\",\"Name\":\"Q-00201\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeupgAAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"Id\":\"0017e00001iZwRMAA0\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeupgAAB\"},\"Id\":\"0067e00000NeupgAAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1iAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"Id\":\"0016s00000fzBcKAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"Id\":\"0066s00000CfE1iAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnQBAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qjAAA body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -550,12 +550,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:05 GMT + - Thu, 09 Nov 2023 19:23:10 GMT Set-Cookie: - - BrowserId=C478nDCeEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:05 + - BrowserId=ay133X81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,23 +573,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0\"},\"Id\":\"01t7e000009AnQBAA0\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"Id\":\"01t6s000004g3qjAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6qAAB\"},\"Product2Id\":\"01t7e000009AnQBAA0\",\"Id\":\"01u7e00000Isi6qAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyRQAA0\"},\"Product2Id\":\"01t6s000004g3qjAAA\",\"Id\":\"01u6s000006MyRQAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"Id\":\"a0z7e00000BDJnDAAX\",\"Name\":\"Q-00885\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwRMAA0\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"Id\":\"a0z6s0000016DsuAAE\",\"Name\":\"Q-00201\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeupgAAB\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"Id\":\"0017e00001iZwRMAA0\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeupgAAB\"},\"Id\":\"0067e00000NeupgAAB\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\"},\"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/01t7e000009AnQBAA0\"},\"Id\":\"01t7e000009AnQBAA0\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1iAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"Id\":\"0016s00000fzBcKAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"Id\":\"0066s00000CfE1iAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"Id\":\"01t6s000004g3qjAAA\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6qAAB\"},\"Product2Id\":\"01t7e000009AnQBAA0\",\"Id\":\"01u7e00000Isi6qAAB\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyRQAA0\"},\"Product2Id\":\"01t6s000004g3qjAAA\",\"Id\":\"01u6s000006MyRQAA0\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:05 GMT + - Thu, 09 Nov 2023 19:23:10 GMT Set-Cookie: - - BrowserId=C_w9MzCeEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:05 + - BrowserId=a3E3nX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -630,30 +630,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeupgAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\",\"Id\":\"0067e00000NeupgAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRMAA0\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00885\",\"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\":\"0017e00001iZwRMAA0\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeupgAAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnQBAA0\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0\"},\"Id\":\"01t7e000009AnQBAA0\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6qAAB\"},\"Product2Id\":\"01t7e000009AnQBAA0\",\"Id\":\"01u7e00000Isi6qAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6qAAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"Id\":\"a0z6s0000016DsuAAE\",\"Name\":\"Q-00201\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1iAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"Id\":\"0016s00000fzBcKAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"Id\":\"0066s00000CfE1iAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\"},\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsuAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qjAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRQAA0\",\"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-0001690\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"Id\":\"01t6s000004g3qjAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeupgAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\",\"Id\":\"0067e00000NeupgAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRMAA0\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00885\",\"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\":\"0017e00001iZwRMAA0\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeupgAAB\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnQBAA0\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0\"},\"Id\":\"01t7e000009AnQBAA0\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6qAAB\"},\"Product2Id\":\"01t7e000009AnQBAA0\",\"Id\":\"01u7e00000Isi6qAAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6qAAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"Id\":\"a0z6s0000016DsuAAE\",\"Name\":\"Q-00201\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1iAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"Id\":\"0016s00000fzBcKAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"Id\":\"0066s00000CfE1iAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\"},\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsuAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qjAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRQAA0\",\"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-0001690\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"Id\":\"01t6s000004g3qjAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -671,12 +669,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:08 GMT + - Thu, 09 Nov 2023 19:23:11 GMT Set-Cookie: - - BrowserId=DWO7sjCeEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:08 + - BrowserId=bCLTjX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -694,26 +692,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"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/0067e00000NeupgAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\",\"Id\":\"0067e00000NeupgAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRMAA0\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00885\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRMAA0\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeupgAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnDAAX\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6qAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnQBAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"Id\":\"a0z6s0000016DsuAAE\",\"Name\":\"Q-00201\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1iAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"Id\":\"0016s00000fzBcKAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"Id\":\"0066s00000CfE1iAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\"},\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsuAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qjAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRQAA0\",\"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-0001691\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"Id\":\"01t6s000004g3qjAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"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/0067e00000NeupgAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\",\"Id\":\"0067e00000NeupgAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRMAA0\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00885\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRMAA0\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeupgAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnDAAX\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6qAAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnQBAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"Id\":\"a0z6s0000016DsuAAE\",\"Name\":\"Q-00201\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1iAAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"Id\":\"0016s00000fzBcKAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"Id\":\"0066s00000CfE1iAAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\"},\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsuAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qjAAA\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyRQAA0\",\"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-0001691\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"Id\":\"01t6s000004g3qjAAA\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -731,12 +731,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:09 GMT + - Thu, 09 Nov 2023 19:23:12 GMT Set-Cookie: - - BrowserId=DlCNkjCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:09 + - BrowserId=bMWjX381Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -756,17 +756,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX\"},\"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/0067e00000NeupgAAB\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJnDAAX\",\"AccountId\":\"0017e00001iZwRMAA0\",\"Id\":\"0067e00000NeupgAAB\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRMAA0\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00885\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRMAA0\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeupgAAB\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJnDAAX\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJnDAAX\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhsAAE\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJnDAAX\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6qAAB\",\"Id\":\"a0v7e000008xWhsAAE\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnQBAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsuAAE\",\"AccountId\":\"0016s00000fzBcKAAU\",\"Id\":\"0066s00000CfE1iAAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBcKAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00201\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBcKAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1iAAF\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DsuAAE\",\"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\":\"a0z6s0000016DsuAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldfAAA\"},\"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-11-09 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\":\"a0z6s0000016DsuAAE\",\"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\":\"a0v6s000000tldfAAA\",\"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-0001691\",\"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\":\"01u6s000006MyRQAA0\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qjAAA\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qjAAA\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qjAAA\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -785,12 +786,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:10 GMT + - Thu, 09 Nov 2023 19:23:13 GMT Set-Cookie: - - BrowserId=DsuJZDCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:10 + - BrowserId=bQVEYX81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -803,11 +804,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7400/5000000 + - api-usage=335/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -924,7 +925,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -935,14 +936,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1110,7 +1109,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 @@ -1126,7 +1126,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1144,9 +1146,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1290,9 +1291,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1414,9 +1415,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 @@ -1461,13 +1471,14 @@ http_interactions: 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":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 + 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":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 @@ -1703,7 +1714,8 @@ http_interactions: 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":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 + 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 @@ -1889,7 +1901,8 @@ http_interactions: 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":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 + 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 @@ -1900,7 +1913,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -1972,7 +1990,8 @@ http_interactions: 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":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 + 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 @@ -2018,7 +2037,8 @@ http_interactions: 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":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 + 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 @@ -2078,7 +2098,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2103,7 +2123,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2159,10 +2190,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE body: encoding: US-ASCII string: '' @@ -2181,12 +2212,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:11 GMT + - Thu, 09 Nov 2023 19:23:13 GMT Set-Cookie: - - BrowserId=D0XCiTCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:11 + - BrowserId=bVTq9n81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2199,9 +2230,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7401/5000000 + - api-usage=342/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:10 GMT + - Thu, 09 Nov 2023 19:23:13 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2210,15 +2241,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX"},"Id":"a0z7e00000BDJnDAAX","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00885","CreatedDate":"2023-08-01T19:03:03.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:10.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:10.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T19:03:10.000+0000","LastReferencedDate":"2023-08-01T19:03:10.000+0000","SBQQ__Account__c":"0017e00001iZwRMAA0","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T19:03:10.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":"0067e00000NeupgAAB","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHoHTAA0","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-01 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-01","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-08-31","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE"},"Id":"a0z6s0000016DsuAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00201","CreatedDate":"2023-11-09T19:23:09.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:13.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:13.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:23:13.000+0000","LastReferencedDate":"2023-11-09T19:23:13.000+0000","SBQQ__Account__c":"0016s00000fzBcKAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:23:13.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":"0066s00000CfE1iAAF","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY99RAAT","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJnDAAX%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DsuAAE%27 body: encoding: US-ASCII string: '' @@ -2237,12 +2268,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:11 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=D3-XMDCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:11 + - BrowserId=bWUXm381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2255,7 +2286,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7387/5000000 + - api-usage=343/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2264,11 +2295,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhsAAE"},"Id":"a0v7e000008xWhsAAE"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldfAAA"},"Id":"a0v6s000000tldfAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhsAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldfAAA body: encoding: US-ASCII string: '' @@ -2287,12 +2318,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:12 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=D8NW_zCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:12 + - BrowserId=bXSoPH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2305,9 +2336,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7388/5000000 + - api-usage=330/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:10 GMT + - Thu, 09 Nov 2023 19:23:13 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2316,14 +2347,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWhsAAE"},"Id":"a0v7e000008xWhsAAE","IsDeleted":false,"Name":"QL-0001746","CreatedDate":"2023-08-01T19:03:10.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:10.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:10.000+0000","SBQQ__Quote__c":"a0z7e00000BDJnDAAX","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6qAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnQBAA0","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldfAAA"},"Id":"a0v6s000000tldfAAA","IsDeleted":false,"Name":"QL-0001692","CreatedDate":"2023-11-09T19:23:13.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:13.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:13.000+0000","SBQQ__Quote__c":"a0z6s0000016DsuAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyRQAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qjAAA","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"25% off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' @@ -2344,12 +2375,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:12 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=EAokJTCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:12 + - BrowserId=bY2ugH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2362,9 +2393,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7402/5000000 + - api-usage=331/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsqEAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI3EAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2373,11 +2404,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsqEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvI3EAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$10 off coupon","Amount_Off__c":10,"Duration__c":"once"}' @@ -2398,12 +2429,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:13 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=EFBVMjCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:13 + - BrowserId=baDoIH81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2416,9 +2447,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7383/5000000 + - api-usage=344/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsvEAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI8EAI" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2427,14 +2458,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEsvEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvI8EAI","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhsAAE","Quote_Stripe_Coupon__c":"a1R7e000007JEsqEAG"}' + string: '{"Quote_Line__c":"a0v6s000000tldfAAA","Quote_Stripe_Coupon__c":"a1R6s000000uvI3EAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2452,12 +2483,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:13 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=EJzuBDCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:13 + - BrowserId=bbM4Yn81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2470,9 +2501,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7397/5000000 + - api-usage=328/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVwzEAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5pEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2481,14 +2512,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVwzEAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5pEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWhsAAE","Quote_Stripe_Coupon__c":"a1R7e000007JEsvEAG"}' + string: '{"Quote_Line__c":"a0v6s000000tldfAAA","Quote_Stripe_Coupon__c":"a1R6s000000uvI8EAI"}' headers: User-Agent: - Faraday v2.4.0 @@ -2506,12 +2537,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:14 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=EN0r8DCeEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:14 + - BrowserId=bcf4OH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2524,9 +2555,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7393/5000000 + - api-usage=336/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVx4EAG" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5uEAC" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2535,11 +2566,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVx4EAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5uEAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -2560,12 +2591,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:14 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Set-Cookie: - - BrowserId=ER-ySzCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:14 + - BrowserId=bd18IX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2580,14 +2611,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7384/5000000 + - api-usage=335/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -2606,12 +2637,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:16 GMT + - Thu, 09 Nov 2023 19:23:16 GMT Set-Cookie: - - BrowserId=EibpvTCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:16 + - BrowserId=budLA381Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2624,7 +2655,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7398/5000000 + - api-usage=345/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2633,12 +2664,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6nAAE"},"Id":"8017e000000nQ6nAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRMAA0","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeupgAAB","EffectiveDate":"2023-08-01","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":"00000976","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:03:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:15.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:03:15.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":"a0z7e00000BDJnDAAX","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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXyEAAW"},"Id":"8016s000001FXyEAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcKAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1iAAF","EffectiveDate":"2023-11-09","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":"00000272","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:16.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:16.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":"a0z6s0000016DsuAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -2659,12 +2690,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:16 GMT + - Thu, 09 Nov 2023 19:23:16 GMT Set-Cookie: - - BrowserId=EmK53zCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:16 + - BrowserId=bvuWUn81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2679,14 +2710,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7385/5000000 + - api-usage=343/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW body: encoding: US-ASCII string: '' @@ -2705,12 +2736,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:17 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Set-Cookie: - - BrowserId=EuJxCTCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:17 + - BrowserId=b0h95H81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2723,9 +2754,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7403/5000000 + - api-usage=346/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:16 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2734,13 +2765,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE"},"Id":"8017e000000nQ6nAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRMAA0","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeupgAAB","EffectiveDate":"2023-08-01","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-01T19:03:16.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000976","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:03:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:16.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:03:16.000+0000","LastViewedDate":"2023-08-01T19:03:16.000+0000","LastReferencedDate":"2023-08-01T19:03:16.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW"},"Id":"8016s000001FXyEAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcKAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1iAAF","EffectiveDate":"2023-11-09","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-11-09T19:23:16.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000272","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:17.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:17.000+0000","LastViewedDate":"2023-11-09T19:23:16.000+0000","LastReferencedDate":"2023-11-09T19:23:16.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":"a0z7e00000BDJnDAAX","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: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsuAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW body: encoding: US-ASCII string: '' @@ -2759,12 +2790,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:17 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Set-Cookie: - - BrowserId=ExwfRzCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:17 + - BrowserId=b1mUuH81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2777,9 +2808,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7396/5000000 + - api-usage=332/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:16 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2788,16 +2819,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE"},"Id":"8017e000000nQ6nAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRMAA0","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeupgAAB","EffectiveDate":"2023-08-01","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-01T19:03:16.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000976","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:03:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:16.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:03:16.000+0000","LastViewedDate":"2023-08-01T19:03:17.000+0000","LastReferencedDate":"2023-08-01T19:03:17.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW"},"Id":"8016s000001FXyEAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcKAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1iAAF","EffectiveDate":"2023-11-09","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-11-09T19:23:16.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000272","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:17.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:17.000+0000","LastViewedDate":"2023-11-09T19:23:17.000+0000","LastReferencedDate":"2023-11-09T19:23:17.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":"a0z7e00000BDJnDAAX","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: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsuAAE","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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6nAAE"]}' + string: '{"order_ids":["8016s000001FXyEAAW"]}' headers: User-Agent: - Faraday v2.4.0 @@ -2815,12 +2846,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:18 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Set-Cookie: - - BrowserId=E1kBPTCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:18 + - BrowserId=b2uWnH81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:17 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2840,27 +2871,27 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHoHTAA0"},"Id":"0037e00001jHoHTAA0","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"translate_multiple_coupons_order_line@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:03:02.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:02.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:02.000+0000","LastViewedDate":"2023-08-01T19:03:02.000+0000","LastReferencedDate":"2023-08-01T19:03:02.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHoHTAA0","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeupgAAB"},"Id":"0067e00000NeupgAAB","IsDeleted":false,"AccountId":"0017e00001iZwRMAA0","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:03:01.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:03.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:03.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T19:03:01.000+0000","LastReferencedDate":"2023-08-01T19:03:01.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJnDAAX","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0"},"Id":"0017e00001iZwRMAA0","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwRMAA0","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:02:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:02:59.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:02:59.000+0000","LastViewedDate":"2023-08-01T19:02:59.000+0000","LastReferencedDate":"2023-08-01T19:02:59.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":["0017e00001iZwRMAA0"],"Opportunities":["0067e00000NeupgAAB"],"Contacts":["0037e00001jHoHTAA0"],"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-08-31","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-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHoHTAA0","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":"0067e00000NeupgAAB","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T19:03:14.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY99RAAT"},"Id":"0036s00000WY99RAAT","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"translate_multiple_coupons_order_line@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:08.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:08.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:08.000+0000","LastViewedDate":"2023-11-09T19:23:08.000+0000","LastReferencedDate":"2023-11-09T19:23:08.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY99RAAT","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF"},"Id":"0066s00000CfE1iAAF","IsDeleted":false,"AccountId":"0016s00000fzBcKAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:08.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:09.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:09.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:23:08.000+0000","LastReferencedDate":"2023-11-09T19:23:08.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DsuAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBcKAAU"},"Id":"0016s00000fzBcKAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBcKAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:07.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:07.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:07.000+0000","LastViewedDate":"2023-11-09T19:23:07.000+0000","LastReferencedDate":"2023-11-09T19:23:07.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":["0016s00000fzBcKAAU"],"Opportunities":["0066s00000CfE1iAAF"],"Contacts":["0036s00000WY99RAAT"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY99RAAT","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1iAAF","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:23:14.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwRMAA0","LastReferencedDate":"2023-08-01T19:03:14.000+0000","LastViewedDate":"2023-08-01T19:03:14.000+0000","SystemModstamp":"2023-08-01T19:03:14.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:14.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:03:03.000+0000","Name":"Q-00885","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJnDAAX","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJnDAAX","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0"},"Id":"01t7e000009AnQBAA0","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:03:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:00.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBcKAAU","LastReferencedDate":"2023-11-09T19:23:14.000+0000","LastViewedDate":"2023-11-09T19:23:14.000+0000","SystemModstamp":"2023-11-09T19:23:14.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:14.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:09.000+0000","Name":"Q-00201","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DsuAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsuAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qjAAA"},"Id":"01t6s000004g3qjAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:23:07.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:07.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:08.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/01u7e00000Isi6qAAB"},"Id":"01u7e00000Isi6qAAB","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnQBAA0","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T19:03:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:00.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/a0v7e000008xWhsAAE"},"Id":"a0v7e000008xWhsAAE","IsDeleted":false,"Name":"QL-0001746","CreatedDate":"2023-08-01T19:03:10.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:10.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:10.000+0000","SBQQ__Quote__c":"a0z7e00000BDJnDAAX","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":"01u7e00000Isi6qAAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnQBAA0","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-01","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-01 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":["01t7e000009AnQBAA0"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWhsAAE","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":"0000000969","SystemModstamp":"2023-08-01T19:03:16.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:16.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:03:15.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6qAAB","OrderId":"8017e000000nQ6nAAE","IsDeleted":false,"Product2Id":"01t7e000009AnQBAA0","Id":"8027e000001bPiYAAU","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPiYAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NeupgAAB"],"Accounts":["0017e00001iZwRMAA0"],"OrderItems":["8027e000001bPiYAAU"],"Quotes":["a0z7e00000BDJnDAAX"],"Opportunity":{"Id":"0067e00000NeupgAAB","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeupgAAB","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":"a0z7e00000BDJnDAAX","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/v59.0/sobjects/PricebookEntry/01u6s000006MyRQAA0"},"Id":"01u6s000006MyRQAA0","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qjAAA","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:23:08.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:08.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:08.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tldfAAA"},"Id":"a0v6s000000tldfAAA","IsDeleted":false,"Name":"QL-0001692","CreatedDate":"2023-11-09T19:23:13.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:13.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:13.000+0000","SBQQ__Quote__c":"a0z6s0000016DsuAAE","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":"01u6s000006MyRQAA0","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qjAAA","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-11-09","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-11-09 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":["01t6s000004g3qjAAA"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tldfAAA","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":"0000000501","SystemModstamp":"2023-11-09T19:23:16.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:16.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:15.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyRQAA0","OrderId":"8016s000001FXyEAAW","IsDeleted":false,"Product2Id":"01t6s000004g3qjAAA","Id":"8026s0000014MvdAAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvdAAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1iAAF"],"Accounts":["0016s00000fzBcKAAU"],"OrderItems":["8026s0000014MvdAAE"],"Quotes":["a0z6s0000016DsuAAE"],"Opportunity":{"Id":"0066s00000CfE1iAAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1iAAF","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":"a0z6s0000016DsuAAE","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T19:03:17.000+0000","LastViewedDate":"2023-08-01T19:03:17.000+0000","SystemModstamp":"2023-08-01T19:03:16.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:16.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T19:03:15.000+0000","TotalAmount":1440.00,"OrderNumber":"00000976","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T19:03:16.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000NeupgAAB","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwRMAA0","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6nAAE","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:23:17.000+0000","LastViewedDate":"2023-11-09T19:23:17.000+0000","SystemModstamp":"2023-11-09T19:23:17.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:17.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:23:15.000+0000","TotalAmount":1440.00,"OrderNumber":"00000272","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:23:16.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1iAAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBcKAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXyEAAW","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXyEAAW","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 @@ -2877,10 +2908,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6nAAE%27%0A + uri: https://connect-saas-89822-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%278016s000001FXyEAAW%27%0A body: encoding: US-ASCII string: '' @@ -2899,12 +2930,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:19 GMT + - Thu, 09 Nov 2023 19:23:18 GMT Set-Cookie: - - BrowserId=FD28HDCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:19 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:19 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:19 + - BrowserId=cBD-GX81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2917,7 +2948,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7398/5000000 + - api-usage=347/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2926,11 +2957,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE"},"Type":"New","OpportunityId":"0067e00000NeupgAAB","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeupgAAB"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW"},"Type":"New","OpportunityId":"0066s00000CfE1iAAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1iAAF"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6nAAE%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXyEAAW%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -2949,12 +2980,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:20 GMT + - Thu, 09 Nov 2023 19:23:18 GMT Set-Cookie: - - BrowserId=FHYwbDCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:20 + - BrowserId=cCAZUH81Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:18 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:18 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:18 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2967,7 +2998,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7399/5000000 + - api-usage=337/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2976,14 +3007,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE"},"Id":"8017e000000nQ6nAAE"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW"},"Id":"8016s000001FXyEAAW"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZwRMAA0&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZwRMAA0 + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBcKAAU&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBcKAAU headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -2992,13 +3023,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - e8147289-b41b-4a09-8c83-1be542ca6845 + - 94ce9a28-577f-49ca-b993-fb676b5de380 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3013,37 +3044,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:20 GMT + - Thu, 09 Nov 2023 19:23:19 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - e8147289-b41b-4a09-8c83-1be542ca6845 + - 94ce9a28-577f-49ca-b993-fb676b5de380 Original-Request: - - req_yWo4dKTYmtnlkF + - req_qWzqMisaOB9Jzm Request-Id: - - req_yWo4dKTYmtnlkF + - req_qWzqMisaOB9Jzm 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: @@ -3052,11 +3090,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON87V76iHzBhBJ", + "id": "cus_Oyb0fjo2dPmzBn", "object": "customer", "address": null, "balance": 0, - "created": 1690916600, + "created": 1699557798, "currency": null, "default_currency": null, "default_source": null, @@ -3064,7 +3102,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "605958E0", + "invoice_prefix": "C1A65C62", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3073,10 +3111,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwRMAA0", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwRMAA0" + "salesforce_account_id": "0016s00000fzBcKAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBcKAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3084,13 +3122,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwRMAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBcKAAU body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON87V76iHzBhBJ"}' + string: '{"Stripe_ID__c":"cus_Oyb0fjo2dPmzBn"}' headers: User-Agent: - Faraday v2.4.0 @@ -3108,12 +3146,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:21 GMT + - Thu, 09 Nov 2023 19:23:19 GMT Set-Cookie: - - BrowserId=FP82vTCeEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:21 + - BrowserId=cG7Vjn81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3128,17 +3166,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7392/5000000 + - api-usage=348/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnQBAA0&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnQBAA0 + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qjAAA&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qjAAA headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3147,15 +3185,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_yWo4dKTYmtnlkF","request_duration_ms":406}}' + - '{"last_request_metrics":{"request_id":"req_qWzqMisaOB9Jzm","request_duration_ms":361}}' Idempotency-Key: - - 27fffeec-90c2-4db9-924c-ed0b075dac4b + - bba54f19-8824-4aa6-97c2-1181d592873b 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3170,37 +3208,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:21 GMT + - Thu, 09 Nov 2023 19:23:19 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 27fffeec-90c2-4db9-924c-ed0b075dac4b + - bba54f19-8824-4aa6-97c2-1181d592873b Original-Request: - - req_c62LJ13yLn4TCC + - req_xG6BnGqu4pPUYn Request-Id: - - req_c62LJ13yLn4TCC + - req_xG6BnGqu4pPUYn 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: @@ -3209,39 +3254,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON87gyRLReRjnl", + "id": "prod_Oyb064r8e5P5Sa", "object": "product", "active": true, "attributes": [], - "created": 1690916601, + "created": 1699557799, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnQBAA0", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnQBAA0" + "salesforce_product2_id": "01t6s000004g3qjAAA", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qjAAA" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-95", + "sku": "rest-product2--2023-11-09-000000-utc-8", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916601, + "updated": 1699557799, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qjAAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON87gyRLReRjnl"}' + string: '{"Stripe_ID__c":"prod_Oyb064r8e5P5Sa"}' headers: User-Agent: - Faraday v2.4.0 @@ -3259,12 +3305,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:21 GMT + - Thu, 09 Nov 2023 19:23:19 GMT Set-Cookie: - - BrowserId=FXnlUjCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:21 + - BrowserId=cL1qw381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3279,14 +3325,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7404/5000000 + - api-usage=345/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnQBAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qjAAA%27%0A body: encoding: US-ASCII string: '' @@ -3305,12 +3351,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:22 GMT + - Thu, 09 Nov 2023 19:23:19 GMT Set-Cookie: - - BrowserId=FcoBZjCeEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:22 + - BrowserId=cN45OH81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3323,7 +3369,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7394/5000000 + - api-usage=346/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3333,10 +3379,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnQBAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qjAAA%27%0A body: encoding: US-ASCII string: '' @@ -3355,12 +3401,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:22 GMT + - Thu, 09 Nov 2023 19:23:19 GMT Set-Cookie: - - BrowserId=FgRKqTCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:22 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:22 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:22 + - BrowserId=cOq8pH81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:19 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3373,7 +3419,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7399/5000000 + - api-usage=332/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3383,10 +3429,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qjAAA body: encoding: US-ASCII string: '' @@ -3405,12 +3451,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:23 GMT + - Thu, 09 Nov 2023 19:23:20 GMT Set-Cookie: - - BrowserId=Fj6UlzCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:23 + - BrowserId=cPhQq381Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3423,9 +3469,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7400/5000000 + - api-usage=329/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:21 GMT + - Thu, 09 Nov 2023 19:23:19 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3434,15 +3480,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnQBAA0"},"Id":"01t7e000009AnQBAA0","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T19:03:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:21.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:21.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/01t6s000004g3qjAAA"},"Id":"01t6s000004g3qjAAA","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:23:07.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:19.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:19.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_ON87gyRLReRjnl","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON87gyRLReRjnl"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_Oyb064r8e5P5Sa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_Oyb064r8e5P5Sa"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiYAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvdAAE%27%0A body: encoding: US-ASCII string: '' @@ -3461,12 +3507,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:23 GMT + - Thu, 09 Nov 2023 19:23:20 GMT Set-Cookie: - - BrowserId=FoSeVzCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:23 + - BrowserId=cQqghX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3479,7 +3525,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7401/5000000 + - api-usage=336/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3489,10 +3535,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPiYAAU%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvdAAE%27%0A body: encoding: US-ASCII string: '' @@ -3511,12 +3557,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:23 GMT + - Thu, 09 Nov 2023 19:23:20 GMT Set-Cookie: - - BrowserId=Frx3cjCeEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:23 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:23 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:23 + - BrowserId=cRip7n81Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3529,7 +3575,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7393/5000000 + - api-usage=330/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3539,10 +3585,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnQBAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qjAAA%27%0A body: encoding: US-ASCII string: '' @@ -3561,12 +3607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:24 GMT + - Thu, 09 Nov 2023 19:23:20 GMT Set-Cookie: - - BrowserId=FvkK2TCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:24 + - BrowserId=cSfFeX81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3579,7 +3625,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7386/5000000 + - api-usage=337/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3589,13 +3635,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON87gyRLReRjnl&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6qAAB&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6qAAB + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_Oyb064r8e5P5Sa&metadata[salesforce_pricebook_entry_id]=01u6s000006MyRQAA0&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyRQAA0 headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3603,16 +3649,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_c62LJ13yLn4TCC","request_duration_ms":281}}' Idempotency-Key: - - d8ccace9-eece-498e-ad89-bb7ce273abe3 + - 90a5145c-4921-4342-a60b-ea289854199b 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3627,37 +3671,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:24 GMT + - Thu, 09 Nov 2023 19:23:20 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - d8ccace9-eece-498e-ad89-bb7ce273abe3 + - 90a5145c-4921-4342-a60b-ea289854199b Original-Request: - - req_4oRHovG6h7EAGf + - req_KiVpGUZD5QCn7Q Request-Id: - - req_4oRHovG6h7EAGf + - req_KiVpGUZD5QCn7Q 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: @@ -3666,21 +3717,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNqqIsgf92XbAOzDWkblRy", + "id": "price_1OAdoyIsgf92XbAOnOaQ8lPM", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916604, + "created": 1699557800, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6qAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6qAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRQAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRQAA0" }, "nickname": null, - "product": "prod_ON87gyRLReRjnl", + "product": "prod_Oyb064r8e5P5Sa", "recurring": { "aggregate_usage": null, "interval": "month", @@ -3695,13 +3746,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6qAAB + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyRQAA0 body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNqqIsgf92XbAOzDWkblRy"}' + string: '{"Stripe_ID__c":"price_1OAdoyIsgf92XbAOnOaQ8lPM"}' headers: User-Agent: - Faraday v2.4.0 @@ -3719,12 +3770,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:24 GMT + - Thu, 09 Nov 2023 19:23:20 GMT Set-Cookie: - - BrowserId=F1hpQDCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:24 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:24 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:24 + - BrowserId=cXW-v381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3739,14 +3790,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7402/5000000 + - api-usage=357/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPiYAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvdAAE%27 body: encoding: US-ASCII string: '' @@ -3765,12 +3816,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:25 GMT + - Thu, 09 Nov 2023 19:23:20 GMT Set-Cookie: - - BrowserId=F5aDcjCeEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:25 + - BrowserId=cYmUg381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:20 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3783,7 +3834,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7395/5000000 + - api-usage=347/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3792,11 +3843,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI"},"Id":"a1N7e000002flPtEAI"},{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI"},"Id":"a1N7e000002flPuEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ"},"Id":"a1N6s00000113iAEAQ"},{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ"},"Id":"a1N6s00000113iBEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tldfAAA%27 body: encoding: US-ASCII string: '' @@ -3815,12 +3866,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:25 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Set-Cookie: - - BrowserId=F9OzSTCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:25 + - BrowserId=cZco8X81Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3833,9 +3884,59 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7405/5000000 + - api-usage=333/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5pEAC"},"Id":"a1P6s000001Bk5pEAC"},{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5uEAC"},"Id":"a1P6s000001Bk5uEAC"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:23:21 GMT + Set-Cookie: + - BrowserId=caLo6381Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23: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=338/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:17 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3844,12 +3945,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI"},"Id":"a1N7e000002flPtEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0139","CreatedDate":"2023-08-01T19:03:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:17.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bPiYAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsqEAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ"},"Id":"a1N6s00000113iAEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0013","CreatedDate":"2023-11-09T19:23:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:17.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014MvdAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvI3EAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ body: encoding: US-ASCII string: '' @@ -3868,12 +3969,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:26 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Set-Cookie: - - BrowserId=GAva3jCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:26 + - BrowserId=cbDyoH81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3886,9 +3987,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7403/5000000 + - api-usage=344/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:17 GMT + - Thu, 09 Nov 2023 19:23:17 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3897,12 +3998,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI"},"Id":"a1N7e000002flPuEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0140","CreatedDate":"2023-08-01T19:03:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:17.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:17.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":"8027e000001bPiYAAU","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsvEAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ"},"Id":"a1N6s00000113iBEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0014","CreatedDate":"2023-11-09T19:23:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:17.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:17.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":"8026s0000014MvdAAE","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvI8EAI","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsqEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI3EAI body: encoding: US-ASCII string: '' @@ -3921,12 +4022,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:26 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Set-Cookie: - - BrowserId=GETrgDCeEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:26 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:26 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:26 + - BrowserId=ccNCJn81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3939,9 +4040,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7394/5000000 + - api-usage=348/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:12 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3950,15 +4051,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsqEAG"},"Id":"a1R7e000007JEsqEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0119","CreatedDate":"2023-08-01T19:03:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:12.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI3EAI"},"Id":"a1R6s000000uvI3EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0011","CreatedDate":"2023-11-09T19:23:14.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:14.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:14.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPtEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPtEAI&metadata[sf_coupon_mapped_metadata_field]=25%25+off+coupon&metadata[sf_order_mapped_metadata_field]=8017e000000nQ6nAAE + string: name=25%25+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iAEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iAEAQ&metadata[sf_coupon_mapped_metadata_field]=25%25+off+coupon&metadata[sf_order_mapped_metadata_field]=8016s000001FXyEAAW headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3967,15 +4068,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4oRHovG6h7EAGf","request_duration_ms":251}}' + - '{"last_request_metrics":{"request_id":"req_xG6BnGqu4pPUYn","request_duration_ms":272}}' Idempotency-Key: - - 690d784d-8a26-4c77-a499-9cbe307e63f1 + - f2d17c51-663b-4b0c-a42b-1896c1ff0486 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3990,37 +4091,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:26 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Content-Type: - application/json Content-Length: - - '653' + - '648' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 690d784d-8a26-4c77-a499-9cbe307e63f1 + - f2d17c51-663b-4b0c-a42b-1896c1ff0486 Original-Request: - - req_duWBumszywJaxt + - req_1qpfzem5HKsrPi Request-Id: - - req_duWBumszywJaxt + - req_1qpfzem5HKsrPi 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: @@ -4029,20 +4137,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "9uZl3wRP", + "id": "rkebpqQ1", "object": "coupon", "amount_off": null, - "created": 1690916606, + "created": 1699557801, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPtEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPtEAI", + "salesforce_order_stripe_coupon_id": "a1N6s00000113iAEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iAEAQ", "sf_coupon_mapped_metadata_field": "25% off coupon", - "sf_order_mapped_metadata_field": "8017e000000nQ6nAAE" + "sf_order_mapped_metadata_field": "8016s000001FXyEAAW" }, "name": "25% off coupon", "percent_off": 25.0, @@ -4050,13 +4158,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"9uZl3wRP"}' + string: '{"Stripe_ID__c":"rkebpqQ1"}' headers: User-Agent: - Faraday v2.4.0 @@ -4074,12 +4182,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:27 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Set-Cookie: - - BrowserId=GKDHSTCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:27 + - BrowserId=cfdKen81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4094,14 +4202,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7389/5000000 + - api-usage=349/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -4120,12 +4228,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:27 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Set-Cookie: - - BrowserId=GN5spTCeEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:27 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:27 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:27 + - BrowserId=cgeeC381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:21 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4138,11 +4246,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7397/5000000 + - api-usage=334/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4259,7 +4367,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4270,14 +4378,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4445,7 +4551,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 @@ -4461,7 +4568,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4479,9 +4588,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -4625,9 +4733,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -4749,9 +4857,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 @@ -4796,13 +4913,14 @@ http_interactions: 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":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 + 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":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 @@ -5038,7 +5156,8 @@ http_interactions: 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":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 + 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 @@ -5224,7 +5343,8 @@ http_interactions: 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":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 + 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 @@ -5235,7 +5355,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5307,7 +5432,8 @@ http_interactions: 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":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 + 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 @@ -5353,7 +5479,8 @@ http_interactions: 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":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 + 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 @@ -5413,7 +5540,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5438,7 +5565,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5494,13 +5632,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsqEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI3EAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"9uZl3wRP"}' + string: '{"Stripe_ID__c":"rkebpqQ1"}' headers: User-Agent: - Faraday v2.4.0 @@ -5518,12 +5656,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:28 GMT + - Thu, 09 Nov 2023 19:23:22 GMT Set-Cookie: - - BrowserId=GWRlsjCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:28 + - BrowserId=clcdwn81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5538,14 +5676,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7406/5000000 + - api-usage=350/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -5564,12 +5702,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:28 GMT + - Thu, 09 Nov 2023 19:23:22 GMT Set-Cookie: - - BrowserId=GaW03DCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:28 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:28 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:28 + - BrowserId=cmatj381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -5582,11 +5720,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7387/5000000 + - api-usage=358/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -5703,7 +5841,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -5714,14 +5852,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -5889,7 +6025,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 @@ -5905,7 +6042,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -5923,9 +6062,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -6069,9 +6207,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6193,9 +6331,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 @@ -6240,13 +6387,14 @@ http_interactions: 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":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 + 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":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 @@ -6482,7 +6630,8 @@ http_interactions: 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":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 + 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 @@ -6668,7 +6817,8 @@ http_interactions: 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":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 + 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 @@ -6679,7 +6829,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -6751,7 +6906,8 @@ http_interactions: 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":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 + 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 @@ -6797,7 +6953,8 @@ http_interactions: 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":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 + 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 @@ -6857,7 +7014,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -6882,7 +7039,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -6938,10 +7106,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsvEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI8EAI body: encoding: US-ASCII string: '' @@ -6960,12 +7128,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:29 GMT + - Thu, 09 Nov 2023 19:23:22 GMT Set-Cookie: - - BrowserId=Gjb4FDCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:29 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:29 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:29 + - BrowserId=crKrV381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:22 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6978,9 +7146,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7407/5000000 + - api-usage=345/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:13 GMT + - Thu, 09 Nov 2023 19:23:14 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6989,15 +7157,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsvEAG"},"Id":"a1R7e000007JEsvEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0120","CreatedDate":"2023-08-01T19:03:13.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:13.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:13.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI8EAI"},"Id":"a1R6s000000uvI8EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0012","CreatedDate":"2023-11-09T19:23:14.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:14.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:14.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPuEAI&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPuEAI&metadata[sf_coupon_mapped_metadata_field]=%2410+off+coupon&metadata[sf_order_mapped_metadata_field]=8017e000000nQ6nAAE¤cy=usd + string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113iBEAQ&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113iBEAQ&metadata[sf_coupon_mapped_metadata_field]=%2410+off+coupon&metadata[sf_order_mapped_metadata_field]=8016s000001FXyEAAW¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7006,15 +7174,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_duWBumszywJaxt","request_duration_ms":216}}' + - '{"last_request_metrics":{"request_id":"req_1qpfzem5HKsrPi","request_duration_ms":233}}' Idempotency-Key: - - c3ba1531-a805-4bfd-b280-2876b7f9ebcf + - 6ac5002a-50ca-4102-bdc5-245b35b5e01e 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7029,37 +7197,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:30 GMT + - Thu, 09 Nov 2023 19:23:23 GMT Content-Type: - application/json Content-Length: - - '654' + - '649' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - c3ba1531-a805-4bfd-b280-2876b7f9ebcf + - 6ac5002a-50ca-4102-bdc5-245b35b5e01e Original-Request: - - req_fFQZv1sFnr6pjc + - req_mprUEYhP1y0CPi Request-Id: - - req_fFQZv1sFnr6pjc + - req_mprUEYhP1y0CPi 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: @@ -7068,20 +7243,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "E0ntxwWa", + "id": "txP3Jwkp", "object": "coupon", "amount_off": 1000, - "created": 1690916610, + "created": 1699557803, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPuEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPuEAI", + "salesforce_order_stripe_coupon_id": "a1N6s00000113iBEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iBEAQ", "sf_coupon_mapped_metadata_field": "$10 off coupon", - "sf_order_mapped_metadata_field": "8017e000000nQ6nAAE" + "sf_order_mapped_metadata_field": "8016s000001FXyEAAW" }, "name": "$10 off coupon", "percent_off": null, @@ -7089,13 +7264,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"E0ntxwWa"}' + string: '{"Stripe_ID__c":"txP3Jwkp"}' headers: User-Agent: - Faraday v2.4.0 @@ -7113,12 +7288,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:30 GMT + - Thu, 09 Nov 2023 19:23:23 GMT Set-Cookie: - - BrowserId=GpzlsDCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:30 + - BrowserId=cufE_381Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7133,17 +7308,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7400/5000000 + - api-usage=335/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsvEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI8EAI body: encoding: UTF-8 - string: '{"Stripe_ID__c":"E0ntxwWa"}' + string: '{"Stripe_ID__c":"txP3Jwkp"}' headers: User-Agent: - Faraday v2.4.0 @@ -7161,12 +7336,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:30 GMT + - Thu, 09 Nov 2023 19:23:23 GMT Set-Cookie: - - BrowserId=GtlSFDCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:30 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:30 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:30 + - BrowserId=cvqw6X81Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7181,34 +7356,22 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7388/5000000 + - api-usage=351/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNqqIsgf92XbAOzDWkblRy + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXyEAAW%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fFQZv1sFnr6pjc","request_duration_ms":216}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -7218,75 +7381,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 19:03:31 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_kd3UDuUyZ9IUZI - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:23:23 GMT + Set-Cookie: + - BrowserId=cww9FX81Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=346/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNqqIsgf92XbAOzDWkblRy", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916604, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6qAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6qAAB" - }, - "nickname": null, - "product": "prod_ON87gyRLReRjnl", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6nAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DsuAAE%27 body: encoding: US-ASCII string: '' @@ -7305,12 +7432,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:31 GMT + - Thu, 09 Nov 2023 19:23:23 GMT Set-Cookie: - - BrowserId=GzTgNDCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:31 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:31 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:31 + - BrowserId=cx6ztH81Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:23 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7323,7 +7450,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7390/5000000 + - api-usage=349/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7333,10 +7460,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON87V76iHzBhBJ?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_Oyb0fjo2dPmzBn?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -7348,13 +7475,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_kd3UDuUyZ9IUZI","request_duration_ms":202}}' + - '{"last_request_metrics":{"request_id":"req_KiVpGUZD5QCn7Q","request_duration_ms":392}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7369,31 +7496,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:31 GMT + - Thu, 09 Nov 2023 19:23:23 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_xajoDhP0rOGly0 + - req_COgskUxwvYSvZg Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7402,11 +7537,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON87V76iHzBhBJ", + "id": "cus_Oyb0fjo2dPmzBn", "object": "customer", "address": null, "balance": 0, - "created": 1690916600, + "created": 1699557798, "currency": null, "default_currency": null, "default_source": null, @@ -7414,7 +7549,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "605958E0", + "invoice_prefix": "C1A65C62", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -7423,10 +7558,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwRMAA0", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwRMAA0" + "salesforce_account_id": "0016s00000fzBcKAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBcKAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -7434,13 +7569,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdoyIsgf92XbAOnOaQ8lPM + 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_COgskUxwvYSvZg","request_duration_ms":214}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:23:24 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_nLLVK8AggJzkNC + 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_1OAdoyIsgf92XbAOnOaQ8lPM", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557800, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyRQAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRQAA0" + }, + "nickname": null, + "product": "prod_Oyb064r8e5P5Sa", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6nAAE&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6nAAE&start_date=1690848000&customer=cus_ON87V76iHzBhBJ&phases[0][items][0][price]=price_1NaNqqIsgf92XbAOzDWkblRy&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPiYAAU&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPiYAAU&phases[0][items][0][discounts][0][coupon]=9uZl3wRP&phases[0][items][0][discounts][1][coupon]=E0ntxwWa&phases[0][items][0][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6nAAE&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6nAAE + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXyEAAW&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyEAAW&start_date=1699488000&customer=cus_Oyb0fjo2dPmzBn&phases[0][items][0][price]=price_1OAdoyIsgf92XbAOnOaQ8lPM&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014MvdAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvdAAE&phases[0][items][0][discounts][0][coupon]=rkebpqQ1&phases[0][items][0][discounts][1][coupon]=txP3Jwkp&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXyEAAW&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXyEAAW headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7449,15 +7689,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_xajoDhP0rOGly0","request_duration_ms":181}}' + - '{"last_request_metrics":{"request_id":"req_mprUEYhP1y0CPi","request_duration_ms":231}}' Idempotency-Key: - - 4b5337a9-db75-4b20-9c5f-31024c3930e0 + - 2ea98c2f-3540-4a2f-b0a6-969b5a5ac0c0 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7472,37 +7712,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:32 GMT + - Thu, 09 Nov 2023 19:23:24 GMT Content-Type: - application/json Content-Length: - - '2669' + - '2654' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 4b5337a9-db75-4b20-9c5f-31024c3930e0 + - 2ea98c2f-3540-4a2f-b0a6-969b5a5ac0c0 Original-Request: - - req_lEXLhTpm8kGkF8 + - req_MkBQz3TZfCMpba Request-Id: - - req_lEXLhTpm8kGkF8 + - req_MkBQz3TZfCMpba 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: @@ -7511,17 +7759,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT", + "id": "sub_sched_1OAdp2Isgf92XbAOT7yeQJtB", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916612, + "created": 1699557804, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON87V76iHzBhBJ", + "customer": "cus_Oyb0fjo2dPmzBn", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7540,8 +7788,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6nAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6nAAE" + "salesforce_order_id": "8016s000001FXyEAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyEAAW" }, "phases": [ { @@ -7556,38 +7804,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "9uZl3wRP", + "coupon": "rkebpqQ1", "discount": null }, { - "coupon": "E0ntxwWa", + "coupon": "txP3Jwkp", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiYAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiYAAU" + "salesforce_order_item_id": "8026s0000014MvdAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvdAAE" }, - "plan": "price_1NaNqqIsgf92XbAOzDWkblRy", - "price": "price_1NaNqqIsgf92XbAOzDWkblRy", + "plan": "price_1OAdoyIsgf92XbAOnOaQ8lPM", + "price": "price_1OAdoyIsgf92XbAOnOaQ8lPM", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6nAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6nAAE" + "salesforce_order_id": "8016s000001FXyEAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyEAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7597,16 +7845,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNqyIsgf92XbAOM0zUW7WY", + "subscription": "sub_1OAdp2Isgf92XbAOWCtLVdOT", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdp2Isgf92XbAOT7yeQJtB"}' headers: User-Agent: - Faraday v2.4.0 @@ -7624,12 +7872,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 19:03:32 GMT + - Thu, 09 Nov 2023 19:23:24 GMT Set-Cookie: - - BrowserId=HALekjCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:32 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:32 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:32 + - BrowserId=c9kqJ381Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:24 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:24 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:24 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7644,18 +7892,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7401/5000000 + - api-usage=350/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6nAAE-8017e000000nQ6nAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXyEAAW-8016s000001FXyEAAW body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6nAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6nAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXyEAAW","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXyEAAW","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdp2Isgf92XbAOT7yeQJtB","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_MkBQz3TZfCMpba"}' headers: User-Agent: - Faraday v2.4.0 @@ -7673,12 +7921,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 19:03:33 GMT + - Thu, 09 Nov 2023 19:23:25 GMT Set-Cookie: - - BrowserId=HGb3SzCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:33 + - BrowserId=c_2iG381Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7691,20 +7939,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7410/5000000 + - api-usage=352/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrM9EAK" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000Kxd1EAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrM9EAK","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000Kxd1EAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdp2Isgf92XbAOT7yeQJtB?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -7716,13 +7964,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_lEXLhTpm8kGkF8","request_duration_ms":798}}' + - '{"last_request_metrics":{"request_id":"req_nLLVK8AggJzkNC","request_duration_ms":188}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7737,31 +7985,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:33 GMT + - Thu, 09 Nov 2023 19:23:25 GMT Content-Type: - application/json Content-Length: - - '3749' + - '3729' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_x10bbvPeVIwL6N + - req_H98vRAuAr6KI0W Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -7770,17 +8026,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT", + "id": "sub_sched_1OAdp2Isgf92XbAOT7yeQJtB", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916612, + "created": 1699557804, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON87V76iHzBhBJ", + "customer": "cus_Oyb0fjo2dPmzBn", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -7799,8 +8055,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6nAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6nAAE" + "salesforce_order_id": "8016s000001FXyEAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyEAAW" }, "phases": [ { @@ -7815,42 +8071,42 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "9uZl3wRP", + "coupon": "rkebpqQ1", "discount": null }, { - "coupon": "E0ntxwWa", + "coupon": "txP3Jwkp", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiYAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiYAAU" + "salesforce_order_item_id": "8026s0000014MvdAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvdAAE" }, - "plan": "price_1NaNqqIsgf92XbAOzDWkblRy", + "plan": "price_1OAdoyIsgf92XbAOnOaQ8lPM", "price": { - "id": "price_1NaNqqIsgf92XbAOzDWkblRy", + "id": "price_1OAdoyIsgf92XbAOnOaQ8lPM", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916604, + "created": 1699557800, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6qAAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6qAAB" + "salesforce_pricebook_entry_id": "01u6s000006MyRQAA0", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyRQAA0" }, "nickname": null, - "product": "prod_ON87gyRLReRjnl", + "product": "prod_Oyb064r8e5P5Sa", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7870,12 +8126,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6nAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6nAAE" + "salesforce_order_id": "8016s000001FXyEAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyEAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -7885,13 +8141,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNqyIsgf92XbAOM0zUW7WY", + "subscription": "sub_1OAdp2Isgf92XbAOWCtLVdOT", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW body: encoding: US-ASCII string: '' @@ -7910,12 +8166,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:34 GMT + - Thu, 09 Nov 2023 19:23:25 GMT Set-Cookie: - - BrowserId=HMrCeTCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:34 + - BrowserId=dDK6-n81Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:25 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:25 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:25 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7928,9 +8184,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7404/5000000 + - api-usage=338/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:33 GMT + - Thu, 09 Nov 2023 19:23:24 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7939,13 +8195,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6nAAE"},"Id":"8017e000000nQ6nAAE","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRMAA0","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeupgAAB","EffectiveDate":"2023-08-01","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-01T19:03:16.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000976","TotalAmount":1440.0,"CreatedDate":"2023-08-01T19:03:15.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T19:03:33.000+0000","LastViewedDate":"2023-08-01T19:03:32.000+0000","LastReferencedDate":"2023-08-01T19:03:32.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXyEAAW"},"Id":"8016s000001FXyEAAW","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBcKAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1iAAF","EffectiveDate":"2023-11-09","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-11-09T19:23:16.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000272","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:23:15.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:24.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:23:24.000+0000","LastViewedDate":"2023-11-09T19:23:24.000+0000","LastReferencedDate":"2023-11-09T19:23: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":"a0z7e00000BDJnDAAX","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_1NaNqyIsgf92XbAOSZ1sQxqT","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsuAAE","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_1OAdp2Isgf92XbAOT7yeQJtB","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAdp2Isgf92XbAOT7yeQJtB"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdp2Isgf92XbAOT7yeQJtB body: encoding: US-ASCII string: '' @@ -7957,13 +8213,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_x10bbvPeVIwL6N","request_duration_ms":219}}' + - '{"last_request_metrics":{"request_id":"req_H98vRAuAr6KI0W","request_duration_ms":206}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7978,31 +8234,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:34 GMT + - Thu, 09 Nov 2023 19:23:25 GMT Content-Type: - application/json Content-Length: - - '2669' + - '2654' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_Aaazs9b4BEUfXq + - req_tKI9VjRbY0lKoR Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8011,17 +8275,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT", + "id": "sub_sched_1OAdp2Isgf92XbAOT7yeQJtB", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916612, + "created": 1699557804, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON87V76iHzBhBJ", + "customer": "cus_Oyb0fjo2dPmzBn", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8040,8 +8304,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6nAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6nAAE" + "salesforce_order_id": "8016s000001FXyEAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyEAAW" }, "phases": [ { @@ -8056,38 +8320,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "9uZl3wRP", + "coupon": "rkebpqQ1", "discount": null }, { - "coupon": "E0ntxwWa", + "coupon": "txP3Jwkp", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPiYAAU", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPiYAAU" + "salesforce_order_item_id": "8026s0000014MvdAAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvdAAE" }, - "plan": "price_1NaNqqIsgf92XbAOzDWkblRy", - "price": "price_1NaNqqIsgf92XbAOzDWkblRy", + "plan": "price_1OAdoyIsgf92XbAOnOaQ8lPM", + "price": "price_1OAdoyIsgf92XbAOnOaQ8lPM", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6nAAE", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6nAAE" + "salesforce_order_id": "8016s000001FXyEAAW", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXyEAAW" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -8097,13 +8361,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNqyIsgf92XbAOM0zUW7WY", + "subscription": "sub_1OAdp2Isgf92XbAOWCtLVdOT", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/9uZl3wRP + uri: https://api.stripe.com/v1/coupons/rkebpqQ1 body: encoding: US-ASCII string: '' @@ -8115,13 +8379,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Aaazs9b4BEUfXq","request_duration_ms":216}}' + - '{"last_request_metrics":{"request_id":"req_tKI9VjRbY0lKoR","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-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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8136,31 +8400,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:34 GMT + - Thu, 09 Nov 2023 19:23:25 GMT Content-Type: - application/json Content-Length: - - '653' + - '648' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_zvECiWq9gNmToo + - req_kSn7H3XHLccIqW Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8169,20 +8440,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "9uZl3wRP", + "id": "rkebpqQ1", "object": "coupon", "amount_off": null, - "created": 1690916606, + "created": 1699557801, "currency": null, "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPtEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPtEAI", + "salesforce_order_stripe_coupon_id": "a1N6s00000113iAEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iAEAQ", "sf_coupon_mapped_metadata_field": "25% off coupon", - "sf_order_mapped_metadata_field": "8017e000000nQ6nAAE" + "sf_order_mapped_metadata_field": "8016s000001FXyEAAW" }, "name": "25% off coupon", "percent_off": 25.0, @@ -8190,10 +8461,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/E0ntxwWa + uri: https://api.stripe.com/v1/coupons/txP3Jwkp body: encoding: US-ASCII string: '' @@ -8205,13 +8476,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_zvECiWq9gNmToo","request_duration_ms":173}}' + - '{"last_request_metrics":{"request_id":"req_kSn7H3XHLccIqW","request_duration_ms":198}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8226,31 +8497,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 19:03:34 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Content-Type: - application/json Content-Length: - - '654' + - '649' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_ZopILscy0g8vbn + - req_33qgzYrBWBAxmZ Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8259,20 +8537,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "E0ntxwWa", + "id": "txP3Jwkp", "object": "coupon", "amount_off": 1000, - "created": 1690916610, + "created": 1699557803, "currency": "usd", "duration": "once", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPuEAI", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPuEAI", + "salesforce_order_stripe_coupon_id": "a1N6s00000113iBEAQ", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113iBEAQ", "sf_coupon_mapped_metadata_field": "$10 off coupon", - "sf_order_mapped_metadata_field": "8017e000000nQ6nAAE" + "sf_order_mapped_metadata_field": "8016s000001FXyEAAW" }, "name": "$10 off coupon", "percent_off": null, @@ -8280,10 +8558,10 @@ http_interactions: "times_redeemed": 1, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JEsvEAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvI8EAI%27 body: encoding: US-ASCII string: '' @@ -8302,12 +8580,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:35 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Set-Cookie: - - BrowserId=HV-H1zCeEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:35 + - BrowserId=dKaLX381Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8320,7 +8598,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7412/5000000 + - api-usage=351/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8329,11 +8607,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI"},"Id":"a1N7e000002flPuEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ"},"Id":"a1N6s00000113iBEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ body: encoding: US-ASCII string: '' @@ -8352,12 +8630,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:35 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Set-Cookie: - - BrowserId=HZcTUTCeEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:35 + - BrowserId=dNn3vn81Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8370,9 +8648,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7405/5000000 + - api-usage=333/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:30 GMT + - Thu, 09 Nov 2023 19:23:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8381,12 +8659,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPuEAI"},"Id":"a1N7e000002flPuEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0140","CreatedDate":"2023-08-01T19:03:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:30.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Order_Item__c":"8027e000001bPiYAAU","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsvEAG","Stripe_ID__c":"E0ntxwWa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/E0ntxwWa"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iBEAQ"},"Id":"a1N6s00000113iBEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0014","CreatedDate":"2023-11-09T19:23:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:23.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":"8026s0000014MvdAAE","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvI8EAI","Stripe_ID__c":"txP3Jwkp","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/txP3Jwkp"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R7e000007JEsqEAG%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Quote_Stripe_Coupon_Id__c%20=%20%27a1R6s000000uvI3EAI%27 body: encoding: US-ASCII string: '' @@ -8405,12 +8683,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:35 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Set-Cookie: - - BrowserId=HczIxDCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:35 + - BrowserId=dOrAu381Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8423,7 +8701,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7429/5000000 + - api-usage=359/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8432,11 +8710,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI"},"Id":"a1N7e000002flPtEAI"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ"},"Id":"a1N6s00000113iAEAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ body: encoding: US-ASCII string: '' @@ -8455,12 +8733,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:36 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Set-Cookie: - - BrowserId=HgXZ9DCeEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:36 + - BrowserId=dPaAQ381Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8473,9 +8751,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7423/5000000 + - api-usage=339/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:27 GMT + - Thu, 09 Nov 2023 19:23:21 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8484,12 +8762,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPtEAI"},"Id":"a1N7e000002flPtEAI","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0139","CreatedDate":"2023-08-01T19:03:17.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:27.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:27.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Order_Item__c":"8027e000001bPiYAAU","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEsqEAG","Stripe_ID__c":"9uZl3wRP","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/9uZl3wRP"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113iAEAQ"},"Id":"a1N6s00000113iAEAQ","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0013","CreatedDate":"2023-11-09T19:23:17.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:21.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:21.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Order_Item__c":"8026s0000014MvdAAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvI3EAI","Stripe_ID__c":"rkebpqQ1","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/rkebpqQ1"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsvEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI8EAI body: encoding: US-ASCII string: '' @@ -8508,12 +8786,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:36 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Set-Cookie: - - BrowserId=Hj2zHzCeEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:36 + - BrowserId=dQe-I381Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8526,9 +8804,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7430/5000000 + - api-usage=347/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:30 GMT + - Thu, 09 Nov 2023 19:23:23 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8537,12 +8815,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsvEAG"},"Id":"a1R7e000007JEsvEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0120","CreatedDate":"2023-08-01T19:03:13.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:30.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 - off coupon","Percent_Off__c":null,"Stripe_ID__c":"E0ntxwWa","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/E0ntxwWa"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI8EAI"},"Id":"a1R6s000000uvI8EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0012","CreatedDate":"2023-11-09T19:23:14.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:23.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:23.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Percent_Off__c":null,"Stripe_ID__c":"txP3Jwkp","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/txP3Jwkp"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsqEAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI3EAI body: encoding: US-ASCII string: '' @@ -8561,12 +8839,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 19:03:36 GMT + - Thu, 09 Nov 2023 19:23:26 GMT Set-Cookie: - - BrowserId=HnYBlDCeEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 19:03:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 19:03:36 + - BrowserId=dRaLsn81Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:23:26 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8579,9 +8857,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7411/5000000 + - api-usage=360/5000000 Last-Modified: - - Tue, 01 Aug 2023 19:03:28 GMT + - Thu, 09 Nov 2023 19:23:22 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8590,60 +8868,7 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEsqEAG"},"Id":"a1R7e000007JEsqEAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0119","CreatedDate":"2023-08-01T19:03:12.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T19:03:28.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T19:03:28.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% - off coupon","Percent_Off__c":25.0,"Stripe_ID__c":"9uZl3wRP","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/9uZl3wRP"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6nAAE-8017e000000nQ6nAAE - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6nAAE","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6nAAE","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNqyIsgf92XbAOSZ1sQxqT","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_lEXLhTpm8kGkF8"}' - 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: - - Wed, 11 Oct 2023 16:38:56 GMT - Set-Cookie: - - BrowserId=q_t5PmhUEe6LkOENKwgbnA; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:38:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:38: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=116/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCrJUAW" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCrJUAW","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvI3EAI"},"Id":"a1R6s000000uvI3EAI","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0011","CreatedDate":"2023-11-09T19:23:14.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:23:22.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:23:22.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"25% + off coupon","Percent_Off__c":25.0,"Stripe_ID__c":"rkebpqQ1","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/rkebpqQ1"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/uses_the_same_quote_stripe_coupon_if_translated_twice.yml b/test/vcr_cassettes/integration/translate/test_coupon/uses_the_same_quote_stripe_coupon_if_translated_twice.yml index 4da715fbdb..5e1ed4c8fe 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/uses_the_same_quote_stripe_coupon_if_translated_twice.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/uses_the_same_quote_stripe_coupon_if_translated_twice.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/Account + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account body: encoding: UTF-8 - string: '{"Name":"REST Account 2023-08-01 00:00:00 UTC"}' + string: '{"Name":"REST Account 2023-11-09 00:00:00 UTC"}' headers: User-Agent: - Faraday v2.4.0 @@ -23,12 +23,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:33 GMT + - Thu, 09 Nov 2023 19:18:45 GMT Set-Cookie: - - BrowserId=RfaSYDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:33 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:33 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:33 + - BrowserId=zZZzSX80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:45 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,9 +41,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7043/5000000 + - api-usage=47/5000000 Location: - - "/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK" + - "/services/data/v58.0/sobjects/Account/0016s00000fzBeFAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -52,14 +52,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0017e00001iZwRxAAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0016s00000fzBeFAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -79,12 +79,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:34 GMT + - Thu, 09 Nov 2023 19:18:46 GMT Set-Cookie: - - BrowserId=RlYX1TCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:34 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:34 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:34 + - BrowserId=zbvU6n80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -97,9 +97,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7044/5000000 + - api-usage=56/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3LGAAY" Content-Type: - application/json;charset=UTF-8 Vary: @@ -108,11 +108,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnPXAA0","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3LGAAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -131,12 +131,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:35 GMT + - Thu, 09 Nov 2023 19:18:46 GMT Set-Cookie: - - BrowserId=Ru0n8TCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:35 + - BrowserId=zeJwIn80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -149,7 +149,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7048/5000000 + - api-usage=52/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -158,14 +158,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPXAA0","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3LGAAY","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -183,12 +183,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:35 GMT + - Thu, 09 Nov 2023 19:18:46 GMT Set-Cookie: - - BrowserId=Ry2L6TCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:35 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:35 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:35 + - BrowserId=zfMSRX80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -201,9 +201,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7043/5000000 + - api-usage=48/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi67AAB" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyQrAAK" Content-Type: - application/json;charset=UTF-8 Vary: @@ -212,14 +212,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi67AAB","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyQrAAK","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 body: encoding: UTF-8 - string: '{"Name":"REST Product2 2023-08-01 00:00:00 UTC","IsActive":true,"Description":"A + string: '{"Name":"REST Product2 2023-11-09 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: @@ -239,12 +239,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:36 GMT + - Thu, 09 Nov 2023 19:18:46 GMT Set-Cookie: - - BrowserId=R3I2RTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:36 + - BrowserId=zgeEqn80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:46 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -257,9 +257,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7044/5000000 + - api-usage=49/5000000 Location: - - "/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK" + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qKAAQ" Content-Type: - application/json;charset=UTF-8 Vary: @@ -268,11 +268,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01t7e000009AnPcAAK","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01t6s000004g3qKAAQ","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -291,12 +291,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:36 GMT + - Thu, 09 Nov 2023 19:18:47 GMT Set-Cookie: - - BrowserId=R8ScXzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:36 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:36 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:36 + - BrowserId=zov3AH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -309,7 +309,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7055/5000000 + - api-usage=51/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -318,14 +318,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry body: encoding: UTF-8 - string: '{"Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPcAAK","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qKAAQ","IsActive":true,"UnitPrice":120.0,"UseStandardPrice":false}' headers: User-Agent: - Faraday v2.4.0 @@ -343,12 +343,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:37 GMT + - Thu, 09 Nov 2023 19:18:47 GMT Set-Cookie: - - BrowserId=SBDARzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:37 + - BrowserId=zp5tVn80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -361,9 +361,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7051/5000000 + - api-usage=47/5000000 Location: - - "/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6CAAR" + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyQwAAK" Content-Type: - application/json;charset=UTF-8 Vary: @@ -372,11 +372,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"01u7e00000Isi6CAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"01u6s000006MyQwAAK","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -395,12 +395,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:37 GMT + - Thu, 09 Nov 2023 19:18:47 GMT Set-Cookie: - - BrowserId=SFHoKjCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:37 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:37 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:37 + - BrowserId=zrdz1n80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -413,7 +413,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7051/5000000 + - api-usage=52/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -422,14 +422,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity body: encoding: UTF-8 - string: '{"Name":"REST Opportunity 2023-08-01 00:00:00 UTC","CloseDate":"2023-08-01","StageName":"Closed/Won","AccountId":"0017e00001iZwRxAAK"}' + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBeFAAU"}' headers: User-Agent: - Faraday v2.4.0 @@ -447,12 +447,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:38 GMT + - Thu, 09 Nov 2023 19:18:47 GMT Set-Cookie: - - BrowserId=SI-NljCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:38 + - BrowserId=zsUIL380Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:47 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -465,9 +465,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7049/5000000 + - api-usage=48/5000000 Location: - - "/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR" + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1EAAV" Content-Type: - application/json;charset=UTF-8 Vary: @@ -476,11 +476,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0067e00000NeuoEAAR","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0066s00000CfE1EAAV","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact body: encoding: UTF-8 string: '{"LastName":"Bianco","Email":"uses_same_quote_coupon@example.com"}' @@ -501,12 +501,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:38 GMT + - Thu, 09 Nov 2023 19:18:48 GMT Set-Cookie: - - BrowserId=SN1fDTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:38 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:38 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:38 + - BrowserId=zvILpX80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -519,9 +519,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7057/5000000 + - api-usage=49/5000000 Location: - - "/services/data/v58.0/sobjects/Contact/0037e00001jHi8NAAS" + - "/services/data/v58.0/sobjects/Contact/0036s00000WY98rAAD" Content-Type: - application/json;charset=UTF-8 Vary: @@ -530,14 +530,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"0037e00001jHi8NAAS","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"0036s00000WY98rAAD","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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":"0067e00000NeuoEAAR","SBQQ__PrimaryContact__c":"0037e00001jHi8NAAS","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__StartDate__c":"2023-08-01","SBQQ__SubscriptionTerm__c":12}' + string: '{"SBQQ__Primary__c":true,"SBQQ__Opportunity2__c":"0066s00000CfE1EAAV","SBQQ__PrimaryContact__c":"0036s00000WY98rAAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","SBQQ__SubscriptionTerm__c":12}' headers: User-Agent: - Faraday v2.4.0 @@ -555,12 +555,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:39 GMT + - Thu, 09 Nov 2023 19:18:48 GMT Set-Cookie: - - BrowserId=SSLM_zCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:39 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:39 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:39 + - BrowserId=zxKLMn80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:48 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -573,9 +573,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7056/5000000 + - api-usage=53/5000000 Location: - - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH" + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU" Content-Type: - application/json;charset=UTF-8 Vary: @@ -584,11 +584,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a0z7e00000BDJloAAH","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a0z6s0000016DsGAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -607,12 +607,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:40 GMT + - Thu, 09 Nov 2023 19:18:49 GMT Set-Cookie: - - BrowserId=Scb8AjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:40 + - BrowserId=z54CY380Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -625,7 +625,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7059/5000000 + - api-usage=54/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -634,11 +634,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJloAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DsGAAU body: encoding: US-ASCII string: '' @@ -657,12 +657,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:40 GMT + - Thu, 09 Nov 2023 19:18:49 GMT Set-Cookie: - - BrowserId=SfyKdTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:40 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:40 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:40 + - BrowserId=z6rUY380Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:49 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -682,17 +682,17 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"Id\":\"a0z7e00000BDJloAAH\",\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeuoEAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"Id\":\"0017e00001iZwRxAAK\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeuoEAAR\"},\"Id\":\"0067e00000NeuoEAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnPXAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3LGAAY body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -710,12 +710,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:41 GMT + - Thu, 09 Nov 2023 19:18:50 GMT Set-Cookie: - - BrowserId=Sp36VzCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:41 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:41 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:41 + - BrowserId=0BmbzH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -733,23 +733,23 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0\"},\"Id\":\"01t7e000009AnPXAA0\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi67AAB\"},\"Product2Id\":\"01t7e000009AnPXAA0\",\"Id\":\"01u7e00000Isi67AAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyQrAAK\"},\"Product2Id\":\"01t6s000004g3LGAAY\",\"Id\":\"01u6s000006MyQrAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"Id\":\"a0z7e00000BDJloAAH\",\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeuoEAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"Id\":\"0017e00001iZwRxAAK\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeuoEAAR\"},\"Id\":\"0067e00000NeuoEAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\"},\"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/01t7e000009AnPXAA0\"},\"Id\":\"01t7e000009AnPXAA0\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi67AAB\"},\"Product2Id\":\"01t7e000009AnPXAA0\",\"Id\":\"01u7e00000Isi67AAB\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyQrAAK\"},\"Product2Id\":\"01t6s000004g3LGAAY\",\"Id\":\"01u6s000006MyQrAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -767,12 +767,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:42 GMT + - Thu, 09 Nov 2023 19:18:50 GMT Set-Cookie: - - BrowserId=SxXqajCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:42 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:42 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:42 + - BrowserId=0GfiKX80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:50 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -790,30 +790,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"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\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0\"},\"Id\":\"01t7e000009AnPXAA0\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi67AAB\"},\"Product2Id\":\"01t7e000009AnPXAA0\",\"Id\":\"01u7e00000Isi67AAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001669\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"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\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":0.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":0.0,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0\"},\"Id\":\"01t7e000009AnPXAA0\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi67AAB\"},\"Product2Id\":\"01t7e000009AnPXAA0\",\"Id\":\"01u7e00000Isi67AAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__Number__c\":1,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001669\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -831,12 +829,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:44 GMT + - Thu, 09 Nov 2023 19:18:52 GMT Set-Cookie: - - BrowserId=TKVjoDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:44 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:44 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:44 + - BrowserId=0Xa6Nn80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -854,26 +852,28 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"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/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001670\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"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/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001670\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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 @@ -891,12 +891,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:46 GMT + - Thu, 09 Nov 2023 19:18:53 GMT Set-Cookie: - - BrowserId=TbQU4TCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:46 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:46 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:46 + - BrowserId=0jkfmH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:53 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -916,17 +916,18 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"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/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":1440.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":1440.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":2,\"netTotal\":1440,\"netNonSegmentTotal\":1440,\"lineItems\":[{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"Id\":\"a0v7e000008xWfNAAU\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":1.0,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\",\"Id\":\"0066s00000CfE1EAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBeFAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00195\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DsGAAU\",\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"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-11-09 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\":\"a0z6s0000016DsGAAU\",\"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\":\"a0v6s000000tlc3AAA\",\"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-0001670\",\"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\":\"01u6s000006MyQrAAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3LGAAY\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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: '' @@ -945,12 +946,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:47 GMT + - Thu, 09 Nov 2023 19:18:54 GMT Set-Cookie: - - BrowserId=Tich2DCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:47 + - BrowserId=0nU-hn80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -963,7 +964,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7063/5000000 + - api-usage=47/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -972,11 +973,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: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z7e00000BDJloAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DsGAAU body: encoding: US-ASCII string: '' @@ -995,12 +996,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:47 GMT + - Thu, 09 Nov 2023 19:18:54 GMT Set-Cookie: - - BrowserId=Tl1MYDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:47 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:47 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:47 + - BrowserId=0ofcN380Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:54 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1020,23 +1021,23 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"Id\":\"a0z7e00000BDJloAAH\",\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeuoEAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"Id\":\"0017e00001iZwRxAAK\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeuoEAAR\"},\"Id\":\"0067e00000NeuoEAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\"},\"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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"Id\":\"a0v7e000008xWfNAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"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-0001738\",\"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-01 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__EffectiveQuantity__c\":1.00,\"SBQQ__Markup__c\":0.00,\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0\"},\"Id\":\"01t7e000009AnPXAA0\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"Id\":\"a0v6s000000tlc3AAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001671\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi67AAB\"},\"Product2Id\":\"01t7e000009AnPXAA0\",\"Id\":\"01u7e00000Isi67AAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"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,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyQrAAK\"},\"Product2Id\":\"01t6s000004g3LGAAY\",\"Id\":\"01u6s000006MyQrAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"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,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t7e000009AnPcAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qKAAQ body: encoding: UTF-8 - string: '{"context":"{\"pricebookId\":\"01s7e000002eLFEAA2\"}"}' + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' headers: User-Agent: - Faraday v2.4.0 @@ -1054,12 +1055,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:48 GMT + - Thu, 09 Nov 2023 19:18:58 GMT Set-Cookie: - - BrowserId=TxV5ezCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:48 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:48 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:48 + - BrowserId=1NJBlX80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1077,29 +1078,29 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK\"},\"Id\":\"01t7e000009AnPcAAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"Id\":\"01t6s000004g3qKAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6CAAR\"},\"Product2Id\":\"01t7e000009AnPcAAK\",\"Id\":\"01u7e00000Isi6CAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 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/v59.0/sobjects/PricebookEntry/01u6s000006MyQwAAK\"},\"Product2Id\":\"01t6s000004g3qKAAQ\",\"Id\":\"01u6s000006MyQwAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"Id\":\"a0z7e00000BDJloAAH\",\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__ContractingMethod__c\":\"By + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0067e00000NeuoEAAR\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"Id\":\"0017e00001iZwRxAAK\",\"Name\":\"REST - Account 2023-08-01 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/0067e00000NeuoEAAR\"},\"Id\":\"0067e00000NeuoEAAR\",\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\"},\"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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"Id\":\"a0v7e000008xWfNAAU\",\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"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-0001738\",\"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-01 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__EffectiveQuantity__c\":1.0,\"SBQQ__Markup__c\":0.0,\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0\"},\"Id\":\"01t7e000009AnPXAA0\",\"Name\":\"REST - Product2 2023-08-01 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\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"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\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"Id\":\"a0v6s000000tlc3AAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001671\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi67AAB\"},\"Product2Id\":\"01t7e000009AnPXAA0\",\"Id\":\"01u7e00000Isi67AAB\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"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,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK\"},\"Id\":\"01t7e000009AnPcAAK\",\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Description\":\"A + 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/v59.0/sobjects/PricebookEntry/01u6s000006MyQrAAK\"},\"Product2Id\":\"01t6s000004g3LGAAY\",\"Id\":\"01u6s000006MyQrAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"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,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"Id\":\"01t6s000004g3qKAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/01u7e00000Isi6CAAR\"},\"Product2Id\":\"01t7e000009AnPcAAK\",\"Id\":\"01u7e00000Isi6CAAR\",\"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/v59.0/sobjects/PricebookEntry/01u6s000006MyQwAAK\"},\"Product2Id\":\"01t6s000004g3qKAAQ\",\"Id\":\"01u6s000006MyQwAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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 @@ -1117,12 +1118,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:49 GMT + - Thu, 09 Nov 2023 19:18:58 GMT Set-Cookie: - - BrowserId=T4jUdjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:49 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:49 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:49 + - BrowserId=1RxqBH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:58 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:58 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:58 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1140,44 +1141,36 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"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/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"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\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"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-01 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\":\"a0z7e00000BDJloAAH\",\"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\":\"a0v7e000008xWfNAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__EffectiveQuantity__c\":1.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__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__Markup__c\":0.0,\"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-0001738\",\"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\":\"01u7e00000Isi67AAB\",\"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/01t7e000009AnPXAA0\"},\"Description\":\"A - great description\",\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__Hidden__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__NonDiscountable__c\":false,\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1.0,\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi67AAB\"},\"UnitPrice\":120.0,\"Product2Id\":\"01t7e000009AnPXAA0\",\"IsActive\":true,\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"Id\":\"01u7e00000Isi67AAB\"}]},\"SBQQ__AssetConversion__c\":\"One - per quote line\",\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009AnPXAA0\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"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},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false},{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPcAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK\"},\"Id\":\"01t7e000009AnPcAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6CAAR\"},\"Product2Id\":\"01t7e000009AnPcAAK\",\"Id\":\"01u7e00000Isi6CAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.00000,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.00,\"SBQQ__ListPrice__c\":120.00,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6CAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__Number__c\":2,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":3,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":2880.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"Id\":\"a0v6s000000tlc3AAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001671\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qKAAQ\",\"SBQQ__Number__c\":2,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQwAAK\",\"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-0001672\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"Id\":\"01t6s000004g3qKAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 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://connect-saas-89822-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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"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/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"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\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":1440.0,\"netNonSegmentTotal\":1440.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"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-01 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\":\"a0z7e00000BDJloAAH\",\"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\":\"a0v7e000008xWfNAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__EffectiveQuantity__c\":1.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__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__Markup__c\":0.0,\"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-0001738\",\"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\":\"01u7e00000Isi67AAB\",\"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/01t7e000009AnPXAA0\"},\"Description\":\"A - great description\",\"SBQQ__ExternallyConfigurable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__QuantityEditable__c\":true,\"SBQQ__Hidden__c\":false,\"SBQQ__ExcludeFromOpportunity__c\":false,\"SBQQ__NonDiscountable__c\":false,\"Name\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__SubscriptionTerm__c\":1.0,\"PricebookEntries\":{\"totalSize\":1,\"done\":true,\"records\":[{\"attributes\":{\"type\":\"PricebookEntry\",\"url\":\"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi67AAB\"},\"UnitPrice\":120.0,\"Product2Id\":\"01t7e000009AnPXAA0\",\"IsActive\":true,\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"Id\":\"01u7e00000Isi67AAB\"}]},\"SBQQ__AssetConversion__c\":\"One - per quote line\",\"SBQQ__IncludeInMaintenance__c\":false,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ReconfigurationDisabled__c\":false,\"SBQQ__DescriptionLocked__c\":false,\"SBQQ__NewQuoteGroup__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__ExcludeFromMaintenance__c\":false,\"SBQQ__AssetAmendmentBehavior__c\":\"Default\",\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OptionSelectionMethod__c\":\"Click\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__CustomConfigurationRequired__c\":false,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__DefaultQuantity__c\":1.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__BlockPricingField__c\":\"Quantity\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t7e000009AnPXAA0\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"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},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false},{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__Product__c\":\"01t7e000009AnPcAAK\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK\"},\"Id\":\"01t7e000009AnPcAAK\",\"Name\":\"REST - Product2 2023-08-01 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/01u7e00000Isi6CAAR\"},\"Product2Id\":\"01t7e000009AnPcAAK\",\"Id\":\"01u7e00000Isi6CAAR\",\"Pricebook2Id\":\"01s7e000002eLFEAA2\",\"UnitPrice\":120.0,\"IsActive\":true}]}},\"SBQQ__Quantity__c\":1.0,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__PriceEditable__c\":false,\"SBQQ__CostEditable__c\":false,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__NonDiscountable__c\":false,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__Hidden__c\":false,\"SBQQ__Taxable__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__DefaultSubscriptionTerm__c\":1,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Cost__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6CAAR\",\"SBQQ__ChargeType__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__TaxCode__c\":null,\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Renewal__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__Number__c\":2,\"SBQQ__Favorite__c\":null},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":3,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' + string: '{"context":"{\"quote\":{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":2880.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"Id\":\"a0v6s000000tlc3AAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001671\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qKAAQ\",\"SBQQ__Number__c\":2,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQwAAK\",\"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-0001672\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"Id\":\"01t6s000004g3qKAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}}"}' headers: User-Agent: - Faraday v2.4.0 @@ -1195,12 +1188,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:52 GMT + - Thu, 09 Nov 2023 19:18:59 GMT Set-Cookie: - - BrowserId=UR2liDCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:52 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:52 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:52 + - BrowserId=1da5RH80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:18:59 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:59 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:18:59 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1218,32 +1211,36 @@ http_interactions: - chunked body: encoding: UTF-8 - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":2880.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":2880.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":2880,\"netNonSegmentTotal\":2880,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"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-01 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\":\"a0z7e00000BDJloAAH\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"Id\":\"a0v7e000008xWfNAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__EffectiveQuantity__c\":1.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__Group__r\":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__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__TermDiscountSchedule__r\":null,\"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__Markup__c\":0.0,\"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-0001738\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularTotal__c\":1440.0,\"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__DiscountSchedule__r\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ProductOption__r\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"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__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"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},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false},{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6CAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":2.0,\"SBQQ__Product__c\":\"01t7e000009AnPcAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":3,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":2880.00,\"SBQQ__CustomerAmount__c\":2880.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.00,\"netNonSegmentTotal\":2880.0000,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"Id\":\"a0v6s000000tlc3AAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001671\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qKAAQ\",\"SBQQ__Number__c\":2,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQwAAK\",\"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-0001673\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"Id\":\"01t6s000004g3qKAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter + uri: https://connect-saas-89822-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\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":2880.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":2880.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":2880,\"netNonSegmentTotal\":2880,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"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-01 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\":\"a0z7e00000BDJloAAH\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"Id\":\"a0v7e000008xWfNAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__EffectiveQuantity__c\":1.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__Group__r\":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__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__TermDiscountSchedule__r\":null,\"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__Markup__c\":0.0,\"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-0001738\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularTotal__c\":1440.0,\"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__DiscountSchedule__r\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ProductOption__r\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"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__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"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},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":2,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false},{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6CAAR\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":2.0,\"SBQQ__Product__c\":\"01t7e000009AnPcAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":3,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' + string: '{"saver":"SBQQ.QuoteAPI.QuoteSaver","model":"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"Id\":\"a0z6s0000016DsGAAU\",\"Name\":\"Q-00195\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__Unopened__c\":true,\"SBQQ__LineItemCount__c\":2,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__Primary__c\":true,\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"Id\":\"0016s00000fzBeFAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"Id\":\"0066s00000CfE1EAAV\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":2880.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"Id\":\"a0v6s000000tlc3AAA\",\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQrAAK\",\"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-0001671\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"Id\":\"01t6s000004g3LGAAY\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DsGAAU\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qKAAQ\",\"SBQQ__Number__c\":2,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQwAAK\",\"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-0001673\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"Id\":\"01t6s000004g3qKAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"}' headers: User-Agent: - Faraday v2.4.0 @@ -1261,12 +1258,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:53 GMT + - Thu, 09 Nov 2023 19:19:01 GMT Set-Cookie: - - BrowserId=UfR9WjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:53 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:53 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:53 + - BrowserId=1tJW4H80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1286,20 +1283,22 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PaymentTerms__c\":\"Net - 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR\"},\"SBQQ__PrimaryQuote__c\":\"a0z7e00000BDJloAAH\",\"AccountId\":\"0017e00001iZwRxAAK\",\"Id\":\"0067e00000NeuoEAAR\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0017e00001iZwRxAAK\",\"SBQQ__RenewalModel__c\":\"Contract - Based\",\"Name\":\"REST Account 2023-08-01 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By - Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00878\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__SubscriptionTerm__c\":12.0,\"SBQQ__MarkupRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularAmount__c\":2880.0,\"SBQQ__OrderBy__c\":null,\"SBQQ__PricebookId__c\":\"01s7e000002eLFEAA2\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0017e00001iZwRxAAK\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__ListAmount__c\":2880.0,\"SBQQ__StartDate__c\":\"2023-08-01\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-08-31\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0067e00000NeuoEAAR\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z7e00000BDJloAAH\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":2880,\"netNonSegmentTotal\":2880,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU\"},\"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-01 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\":\"a0z7e00000BDJloAAH\",\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__ChargeType__c\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ComponentSubscriptionScope__c\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__OptionLevel__c\":null,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"Id\":\"a0v7e000008xWfNAAU\",\"SBQQ__EffectiveSubscriptionTerm__c\":12.0,\"SBQQ__OriginalQuoteLineId__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__EffectiveQuantity__c\":1.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__Group__r\":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__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__TermDiscountSchedule__r\":null,\"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__Markup__c\":0.0,\"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-0001738\",\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__SubscriptionTerm__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__RegularTotal__c\":1440.0,\"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__DiscountSchedule__r\":null,\"SBQQ__MaximumPrice__c\":null,\"SBQQ__ProductOption__r\":null,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi67AAB\",\"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__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t7e000009AnPXAA0\",\"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,\"descriptionLocked\":false},{\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z7e00000BDJloAAH\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWaOAAU\"},\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__Markup__c\":0.0,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__CarryoverLine__c\":false,\"SBQQ__GrossProfit__c\":null,\"SBQQ__VolumeDiscount__c\":null,\"SBQQ__BillingType__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"SBQQ__CustomerPrice__c\":1440.0,\"SBQQ__Discount__c\":null,\"SBQQ__ListPrice__c\":120.0,\"SBQQ__Existing__c\":false,\"SBQQ__MarkupRate__c\":null,\"SBQQ__ProductName__c\":\"REST - Product2 2023-08-01 00:00:00 UTC\",\"SBQQ__RegularTotal__c\":1440.0,\"SBQQ__DefaultSubscriptionTerm__c\":1.0,\"SBQQ__PriceEditable__c\":false,\"SBQQ__ProratedPrice__c\":1440.0,\"SBQQ__ComponentTotal__c\":null,\"SBQQ__SubscriptionTargetPrice__c\":null,\"SBQQ__AllowAssetRefund__c\":false,\"SBQQ__Optional__c\":false,\"SBQQ__HasConsumptionSchedule__c\":false,\"SBQQ__StartDate__c\":null,\"SBQQ__SubscriptionType__c\":\"Renewable\",\"SBQQ__PriorQuantity__c\":null,\"SBQQ__NonPartnerDiscountable__c\":false,\"SBQQ__Quote__c\":\"a0z7e00000BDJloAAH\",\"SBQQ__ChargeType__c\":null,\"SBQQ__ProratedListPrice__c\":1440.0,\"SBQQ__DiscountSchedule__r\":null,\"SBQQ__UpliftAmount__c\":0.0,\"SBQQ__ProductOption__r\":null,\"SBQQ__PartnerTotal__c\":1440.0,\"SBQQ__SubscriptionPricing__c\":\"Fixed - Price\",\"SBQQ__AdditionalDiscount__c\":0.0,\"SBQQ__NetPrice__c\":1440.0,\"SBQQ__ListTotal__c\":1440.0,\"SBQQ__CustomerTotal__c\":1440.0,\"SBQQ__Favorite__c\":null,\"SBQQ__PricebookEntryId__c\":\"01u7e00000Isi6CAAR\",\"Id\":\"a0v7e000008xWaOAAU\",\"SBQQ__ProductOption__c\":null,\"SBQQ__RegularPrice__c\":1440.0,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EffectiveQuantity__c\":1.0,\"SBQQ__Quantity__c\":1.0,\"SBQQ__TaxCode__c\":null,\"SBQQ__ContractedPrice__c\":null,\"SBQQ__CostEditable__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__Group__r\":null,\"SBQQ__RequiredBy__r\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__Quote__r\":null,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__Product__r\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__OptionDiscount__c\":null,\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__Number__c\":2.0,\"SBQQ__Product__c\":\"01t7e000009AnPcAAK\",\"SBQQ__SpecialPrice__c\":120.0,\"SBQQ__PricingMethodEditable__c\":false,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Uplift__c\":0.0,\"SBQQ__ContractedPrice__r\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"SBQQ__TermDiscountSchedule__r\":null,\"SBQQ__Description__c\":\"A - great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__DiscountScheduleType__c\":null,\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__Incomplete__c\":false},\"reconfigurationDisabled\":false,\"productQuantityEditable\":true,\"productHasDimensions\":false,\"key\":3,\"hasConsumptionSchedules\":false,\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU\"},\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__NetAmount__c\":2880.0,\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__CustomerAmount__c\":2880.0,\"SBQQ__PaymentTerms__c\":\"Net + 30\",\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DsGAAU\",\"AccountId\":\"0016s00000fzBeFAAU\",\"Id\":\"0066s00000CfE1EAAV\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBeFAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00195\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBeFAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE1EAAV\",\"SBQQ__LineItemCount__c\":2.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DsGAAU\",\"SBQQ__Unopened__c\":true,\"SBQQ__RenewalTerm__c\":null},\"nextKey\":3,\"netTotal\":2880.0,\"netNonSegmentTotal\":2880.0,\"lineItems\":[{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA\"},\"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-11-09 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\":\"a0z6s0000016DsGAAU\",\"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\":\"a0v6s000000tlc3AAA\",\"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-0001671\",\"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\":\"01u6s000006MyQrAAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3LGAAY\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3LGAAY\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3LGAAY\",\"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-11-09\",\"descriptionLocked\":false},{\"upliftable\":false,\"upgradeSourcesBySourceProductId\":{},\"ui_original_record\":{\"cloneRecordIfNoCache\":false,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DsGAAU\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"1\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcIAAQ\"},\"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-11-09 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\":\"a0z6s0000016DsGAAU\",\"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\":\"a0v6s000000tlcIAAQ\",\"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\":2.0,\"SBQQ__SubscriptionPercent__c\":null,\"SBQQ__ComponentListTotal__c\":null,\"SBQQ__TermDiscountSchedule__c\":null,\"SBQQ__Taxable__c\":false,\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__ProductCode__c\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__OriginalPrice__c\":120.0,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__NetTotal__c\":1440.0,\"SBQQ__UnitCost__c\":null,\"SBQQ__SubscriptionCategory__c\":null,\"SBQQ__Hidden__c\":false,\"SBQQ__NonDiscountable__c\":false,\"SBQQ__RenewedAsset__c\":null,\"SBQQ__ProductSubscriptionType__c\":\"Renewable\",\"SBQQ__GrossProfit__c\":null,\"SBQQ__MinimumPrice__c\":null,\"SBQQ__BundledQuantity__c\":null,\"SBQQ__BatchQuantity__c\":null,\"SBQQ__ProrateMultiplier__c\":12.0,\"Name\":\"QL-0001673\",\"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\":\"01u6s000006MyQwAAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qKAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qKAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qKAAQ\",\"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\":3,\"hasConsumptionSchedules\":false,\"effectiveStartDate\":\"2023-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":2880.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -1318,12 +1317,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:54 GMT + - Thu, 09 Nov 2023 19:19:01 GMT Set-Cookie: - - BrowserId=UmDTlDCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:54 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:54 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:54 + - BrowserId=1x_aqH80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:01 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:01 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:01 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -1336,11 +1335,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7076/5000000 + - api-usage=54/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -1457,7 +1456,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -1468,14 +1467,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -1643,7 +1640,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 @@ -1659,7 +1657,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -1677,9 +1677,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -1823,9 +1822,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -1947,9 +1946,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 @@ -1994,13 +2002,14 @@ http_interactions: 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":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 + 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":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 @@ -2236,7 +2245,8 @@ http_interactions: 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":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 + 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 @@ -2422,7 +2432,8 @@ http_interactions: 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":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 + 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 @@ -2433,7 +2444,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -2505,7 +2521,8 @@ http_interactions: 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":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 + 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 @@ -2551,7 +2568,8 @@ http_interactions: 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":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 + 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 @@ -2611,7 +2629,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -2636,7 +2654,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -2692,10 +2721,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU body: encoding: US-ASCII string: '' @@ -2714,12 +2743,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:55 GMT + - Thu, 09 Nov 2023 19:19:02 GMT Set-Cookie: - - BrowserId=UuZW5DCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:55 + - BrowserId=121fBH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2732,9 +2761,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7076/5000000 + - api-usage=49/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:57:54 GMT + - Thu, 09 Nov 2023 19:19:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2743,15 +2772,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH"},"Id":"a0z7e00000BDJloAAH","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"Q-00878","CreatedDate":"2023-08-01T18:57:39.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:54.000+0000","LastActivityDate":null,"LastViewedDate":"2023-08-01T18:57:54.000+0000","LastReferencedDate":"2023-08-01T18:57:54.000+0000","SBQQ__Account__c":"0017e00001iZwRxAAK","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST - Account 2023-08-01 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-01T18:57:54.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":"0067e00000NeuoEAAR","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net - 30","SBQQ__PriceBook__c":"01s7e000002eLFEAA2","SBQQ__PricebookId__c":"01s7e000002eLFEAA2","SBQQ__PrimaryContact__c":"0037e00001jHi8NAAS","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-01 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-01","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":2.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-08-31","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":2880.0,"SBQQ__ListAmount__c":2880.0,"SBQQ__NetAmount__c":2880.0,"SBQQ__RegularAmount__c":2880.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__Quote__c","url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU"},"Id":"a0z6s0000016DsGAAU","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00195","CreatedDate":"2023-11-09T19:18:48.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:01.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:01.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:19:01.000+0000","LastReferencedDate":"2023-11-09T19:19:01.000+0000","SBQQ__Account__c":"0016s00000fzBeFAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:19:01.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":"0066s00000CfE1EAAV","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY98rAAD","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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":2.0,"SBQQ__AdditionalDiscountAmount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__DaysQuoteOpen__c":0.0,"SBQQ__ExpirationDate__c":"2023-12-09","SBQQ__TotalCustomerDiscountAmount__c":0.0,"SBQQ__Uncalculated__c":true,"SBQQ__CustomerAmount__c":2880.0,"SBQQ__ListAmount__c":2880.0,"SBQQ__NetAmount__c":2880.0,"SBQQ__RegularAmount__c":2880.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z7e00000BDJloAAH%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DsGAAU%27 body: encoding: US-ASCII string: '' @@ -2770,12 +2799,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:55 GMT + - Thu, 09 Nov 2023 19:19:02 GMT Set-Cookie: - - BrowserId=UyP83DCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:55 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:55 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:55 + - BrowserId=14xYzn80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2788,7 +2817,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7077/5000000 + - api-usage=47/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -2797,11 +2826,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWaOAAU"},"Id":"a0v7e000008xWaOAAU"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU"},"Id":"a0v7e000008xWfNAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":2,"done":true,"records":[{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA"},"Id":"a0v6s000000tlc3AAA"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcIAAQ"},"Id":"a0v6s000000tlcIAAQ"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWaOAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA body: encoding: US-ASCII string: '' @@ -2820,12 +2849,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:56 GMT + - Thu, 09 Nov 2023 19:19:02 GMT Set-Cookie: - - BrowserId=U17iojCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:56 + - BrowserId=16BWC380Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2838,9 +2867,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=52/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:57:54 GMT + - Thu, 09 Nov 2023 19:19:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2849,14 +2878,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWaOAAU"},"Id":"a0v7e000008xWaOAAU","IsDeleted":false,"Name":"QL-0001739","CreatedDate":"2023-08-01T18:57:54.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:54.000+0000","SBQQ__Quote__c":"a0z7e00000BDJloAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":2.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6CAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPcAAK","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA"},"Id":"a0v6s000000tlc3AAA","IsDeleted":false,"Name":"QL-0001671","CreatedDate":"2023-11-09T19:18:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:01.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:01.000+0000","SBQQ__Quote__c":"a0z6s0000016DsGAAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyQrAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3LGAAY","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcIAAQ body: encoding: US-ASCII string: '' @@ -2875,12 +2904,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:56 GMT + - Thu, 09 Nov 2023 19:19:02 GMT Set-Cookie: - - BrowserId=U6Wv2jCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:56 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:56 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:56 + - BrowserId=18JdBn80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:02 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2893,9 +2922,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7078/5000000 + - api-usage=59/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:57:54 GMT + - Thu, 09 Nov 2023 19:19:01 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -2904,14 +2933,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v7e000008xWfNAAU"},"Id":"a0v7e000008xWfNAAU","IsDeleted":false,"Name":"QL-0001738","CreatedDate":"2023-08-01T18:57:47.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:54.000+0000","SBQQ__Quote__c":"a0z7e00000BDJloAAH","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A - great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi67AAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPXAA0","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-08-01","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST - Product2 2023-08-01 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcIAAQ"},"Id":"a0v6s000000tlcIAAQ","IsDeleted":false,"Name":"QL-0001674","CreatedDate":"2023-11-09T19:19:01.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:01.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:01.000+0000","SBQQ__Quote__c":"a0z6s0000016DsGAAU","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":2.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyQwAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qKAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"$55 off coupon","Amount_Off__c":55,"Duration__c":"forever"}' @@ -2932,12 +2961,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:57 GMT + - Thu, 09 Nov 2023 19:19:03 GMT Set-Cookie: - - BrowserId=U_u_aDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:57 + - BrowserId=198zrX80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -2950,9 +2979,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7075/5000000 + - api-usage=61/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEs7EAG" + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHUEAY" Content-Type: - application/json;charset=UTF-8 Vary: @@ -2961,14 +2990,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1R7e000007JEs7EAG","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1R6s000000uvHUEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWaOAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEs7EAG"}' + string: '{"Quote_Line__c":"a0v6s000000tlc3AAA","Quote_Stripe_Coupon__c":"a1R6s000000uvHUEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -2986,12 +3015,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:57 GMT + - Thu, 09 Nov 2023 19:19:03 GMT Set-Cookie: - - BrowserId=VD6UXDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:57 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:57 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:57 + - BrowserId=1_E1PH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3004,9 +3033,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7077/5000000 + - api-usage=60/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVvSEAW" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5BEAS" Content-Type: - application/json;charset=UTF-8 Vary: @@ -3015,14 +3044,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVvSEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5BEAS","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c body: encoding: UTF-8 - string: '{"Quote_Line__c":"a0v7e000008xWfNAAU","Quote_Stripe_Coupon__c":"a1R7e000007JEs7EAG"}' + string: '{"Quote_Line__c":"a0v6s000000tlcIAAQ","Quote_Stripe_Coupon__c":"a1R6s000000uvHUEAY"}' headers: User-Agent: - Faraday v2.4.0 @@ -3040,12 +3069,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:57:58 GMT + - Thu, 09 Nov 2023 19:19:03 GMT Set-Cookie: - - BrowserId=VIJ7TzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:58 + - BrowserId=2AWnnn80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3058,9 +3087,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=61/5000000 Location: - - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P7e000008TVvHEAW" + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5GEAS" Content-Type: - application/json;charset=UTF-8 Vary: @@ -3069,11 +3098,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"id":"a1P7e000008TVvHEAW","success":true,"errors":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1P6s000001Bk5GEAS","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU body: encoding: UTF-8 string: '{"SBQQ__Ordered__c":true}' @@ -3094,12 +3123,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:57:58 GMT + - Thu, 09 Nov 2023 19:19:03 GMT Set-Cookie: - - BrowserId=VMBuGTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:58 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:58 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:58 + - BrowserId=2BhsBH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:03 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3114,14 +3143,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7076/5000000 + - api-usage=64/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH/SBQQ__Orders__r + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU/SBQQ__Orders__r body: encoding: US-ASCII string: '' @@ -3140,12 +3169,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:57:59 GMT + - Thu, 09 Nov 2023 19:19:05 GMT Set-Cookie: - - BrowserId=VaSM_zCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:57:59 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:59 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:57:59 + - BrowserId=2SbO-H80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3158,7 +3187,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7077/5000000 + - api-usage=65/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3167,12 +3196,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8017e000000nQ6JAAU"},"Id":"8017e000000nQ6JAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRxAAK","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeuoEAAR","EffectiveDate":"2023-08-01","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":"00000969","TotalAmount":2880.0,"CreatedDate":"2023-08-01T18:57:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:59.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:57: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":"a0z7e00000BDJloAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v52.0/sobjects/Order/8016s000001FXxkAAG"},"Id":"8016s000001FXxkAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeFAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1EAAV","EffectiveDate":"2023-11-09","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":"00000266","TotalAmount":2880.0,"CreatedDate":"2023-11-09T19:19:04.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:05.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:05.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":"a0z6s0000016DsGAAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG body: encoding: UTF-8 string: '{"Status":"Activated"}' @@ -3193,12 +3222,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:00 GMT + - Thu, 09 Nov 2023 19:19:05 GMT Set-Cookie: - - BrowserId=VeG8iTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:00 + - BrowserId=2TsZ2n80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:05 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:05 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:05 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3213,14 +3242,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=57/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG body: encoding: US-ASCII string: '' @@ -3239,12 +3268,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:01 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Set-Cookie: - - BrowserId=VngJMzCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:01 + - BrowserId=2auOj380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3257,9 +3286,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=58/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:00 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3268,13 +3297,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU"},"Id":"8017e000000nQ6JAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRxAAK","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeuoEAAR","EffectiveDate":"2023-08-01","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-01T18:58:00.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000969","TotalAmount":2880.0,"CreatedDate":"2023-08-01T18:57:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:00.000+0000","LastViewedDate":"2023-08-01T18:58:00.000+0000","LastReferencedDate":"2023-08-01T18:58:00.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG"},"Id":"8016s000001FXxkAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeFAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1EAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:05.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000266","TotalAmount":2880.0,"CreatedDate":"2023-11-09T19:19:04.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:06.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:06.000+0000","LastViewedDate":"2023-11-09T19:19:05.000+0000","LastReferencedDate":"2023-11-09T19:19:05.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJloAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsGAAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG body: encoding: US-ASCII string: '' @@ -3293,12 +3322,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:01 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Set-Cookie: - - BrowserId=VrHdyzCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:01 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:01 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:01 + - BrowserId=2boNbH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3311,9 +3340,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7081/5000000 + - api-usage=60/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:00 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3322,16 +3351,16 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU"},"Id":"8017e000000nQ6JAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRxAAK","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeuoEAAR","EffectiveDate":"2023-08-01","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-01T18:58:00.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000969","TotalAmount":2880.0,"CreatedDate":"2023-08-01T18:57:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:00.000+0000","LastViewedDate":"2023-08-01T18:58:01.000+0000","LastReferencedDate":"2023-08-01T18:58:01.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG"},"Id":"8016s000001FXxkAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeFAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1EAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:05.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000266","TotalAmount":2880.0,"CreatedDate":"2023-11-09T19:19:04.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:06.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:06.000+0000","LastViewedDate":"2023-11-09T19:19:06.000+0000","LastReferencedDate":"2023-11-09T19:19:06.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not - Needed","SBQQ__Quote__c":"a0z7e00000BDJloAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsGAAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":null,"Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi body: encoding: UTF-8 - string: '{"order_ids":["8017e000000nQ6JAAU"]}' + string: '{"order_ids":["8016s000001FXxkAAG"]}' headers: User-Agent: - Faraday v2.4.0 @@ -3349,12 +3378,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:02 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Set-Cookie: - - BrowserId=VvF_TTCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:02 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:02 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:02 + - BrowserId=2cqvrH80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:06 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3374,36 +3403,36 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v58.0/sobjects/Contact/0037e00001jHi8NAAS"},"Id":"0037e00001jHi8NAAS","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"uses_same_quote_coupon@example.com","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:38.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:38.000+0000","LastViewedDate":"2023-08-01T18:57:38.000+0000","LastReferencedDate":"2023-08-01T18:57:38.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0037e00001jHi8NAAS","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR"},"Id":"0067e00000NeuoEAAR","IsDeleted":false,"AccountId":"0017e00001iZwRxAAK","IsPrivate":false,"Name":"REST - Opportunity 2023-08-01 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-08-01","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:38.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:39.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:39.000+0000","FiscalQuarter":3,"FiscalYear":2023,"Fiscal":"2023 - 3","LastViewedDate":"2023-08-01T18:57:38.000+0000","LastReferencedDate":"2023-08-01T18:57:38.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z7e00000BDJloAAH","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK"},"Id":"0017e00001iZwRxAAK","IsDeleted":false,"Name":"REST - Account 2023-08-01 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0017e00001iZwRxAAK","OwnerId":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:33.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:33.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:33.000+0000","LastViewedDate":"2023-08-01T18:57:33.000+0000","LastReferencedDate":"2023-08-01T18:57:33.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":["0017e00001iZwRxAAK"],"Opportunities":["0067e00000NeuoEAAR"],"Contacts":["0037e00001jHi8NAAS"],"SBQQ__RegularAmount__c":2880.00,"SBQQ__NetAmount__c":2880.00,"SBQQ__ListAmount__c":2880.00,"SBQQ__CustomerAmount__c":2880.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-08-31","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":2,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-08-01","SBQQ__ShippingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__SalesRep__c":"0057e00000VZBcyAAH","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0037e00001jHi8NAAS","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":"0067e00000NeuoEAAR","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-08-01T18:57:58.000+0000","SBQQ__ContractingMethod__c":"By + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY98rAAD"},"Id":"0036s00000WY98rAAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"uses_same_quote_coupon@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:18:48.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:48.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:48.000+0000","LastViewedDate":"2023-11-09T19:18:48.000+0000","LastReferencedDate":"2023-11-09T19:18:48.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY98rAAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV"},"Id":"0066s00000CfE1EAAV","IsDeleted":false,"AccountId":"0016s00000fzBeFAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:18:48.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:49.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:49.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:18:48.000+0000","LastReferencedDate":"2023-11-09T19:18:48.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DsGAAU","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBeFAAU"},"Id":"0016s00000fzBeFAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBeFAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:18:46.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:46.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:46.000+0000","LastViewedDate":"2023-11-09T19:18:46.000+0000","LastReferencedDate":"2023-11-09T19:18:46.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":["0016s00000fzBeFAAU"],"Opportunities":["0066s00000CfE1EAAV"],"Contacts":["0036s00000WY98rAAD"],"SBQQ__RegularAmount__c":2880.00,"SBQQ__NetAmount__c":2880.00,"SBQQ__ListAmount__c":2880.00,"SBQQ__CustomerAmount__c":2880.00,"SBQQ__Uncalculated__c":true,"SBQQ__TotalCustomerDiscountAmount__c":0.00,"SBQQ__ExpirationDate__c":"2023-12-09","SBQQ__DaysQuoteOpen__c":0,"SBQQ__AveragePartnerDiscount__c":0.0,"SBQQ__AverageCustomerDiscount__c":0.0,"SBQQ__AdditionalDiscountAmount__c":0.00,"SBQQ__LineItemCount__c":2,"SBQQ__WatermarkShown__c":false,"SBQQ__Unopened__c":true,"SBQQ__Type__c":"Quote","SBQQ__SubscriptionTerm__c":12,"SBQQ__Status__c":"Draft","SBQQ__StartDate__c":"2023-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY98rAAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE1EAAV","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:19:03.000+0000","SBQQ__ContractingMethod__c":"By Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST - Account 2023-08-01 00:00:00 UTC","SBQQ__Account__c":"0017e00001iZwRxAAK","LastReferencedDate":"2023-08-01T18:57:58.000+0000","LastViewedDate":"2023-08-01T18:57:58.000+0000","SystemModstamp":"2023-08-01T18:57:58.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:58.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:39.000+0000","Name":"Q-00878","IsDeleted":false,"OwnerId":"0057e00000VZBcyAAH","Id":"a0z7e00000BDJloAAH","attributes":{"url":"/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z7e00000BDJloAAH","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0"},"Id":"01t7e000009AnPXAA0","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:57:34.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:34.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:35.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBeFAAU","LastReferencedDate":"2023-11-09T19:19:03.000+0000","LastViewedDate":"2023-11-09T19:19:03.000+0000","SystemModstamp":"2023-11-09T19:19:03.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:03.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:18:48.000+0000","Name":"Q-00195","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DsGAAU","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DsGAAU","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3LGAAY"},"Id":"01t6s000004g3LGAAY","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:18:46.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:46.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:46.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed - Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK"},"Id":"01t7e000009AnPcAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:57:36.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:36.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:37.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qKAAQ"},"Id":"01t6s000004g3qKAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:18:47.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:47.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/01u7e00000Isi67AAB"},"Id":"01u7e00000Isi67AAB","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPXAA0","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T18:57:35.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:35.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:35.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6CAAR"},"Id":"01u7e00000Isi6CAAR","Name":"REST - Product2 2023-08-01 00:00:00 UTC","Pricebook2Id":"01s7e000002eLFEAA2","Product2Id":"01t7e000009AnPcAAK","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-08-01T18:57:37.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:37.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:37.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/a0v7e000008xWfNAAU"},"Id":"a0v7e000008xWfNAAU","IsDeleted":false,"Name":"QL-0001738","CreatedDate":"2023-08-01T18:57:47.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:54.000+0000","SBQQ__Quote__c":"a0z7e00000BDJloAAH","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":"01u7e00000Isi67AAB","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPXAA0","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-01","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-01 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/a0v7e000008xWaOAAU"},"Id":"a0v7e000008xWaOAAU","IsDeleted":false,"Name":"QL-0001739","CreatedDate":"2023-08-01T18:57:54.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:54.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:54.000+0000","SBQQ__Quote__c":"a0z7e00000BDJloAAH","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":2,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u7e00000Isi6CAAR","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t7e000009AnPcAAK","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-01","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-01 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":["01t7e000009AnPXAA0"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWfNAAU","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":"0000000961","SystemModstamp":"2023-08-01T18:58:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:59.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi67AAB","OrderId":"8017e000000nQ6JAAU","IsDeleted":false,"Product2Id":"01t7e000009AnPXAA0","Id":"8027e000001bPhzAAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPhzAAE","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t7e000009AnPcAAK"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v7e000008xWaOAAU","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":"0000000962","SystemModstamp":"2023-08-01T18:58:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:59.000+0000","EndDate":"2024-07-31","ServiceDate":"2023-08-01","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u7e00000Isi6CAAR","OrderId":"8017e000000nQ6JAAU","IsDeleted":false,"Product2Id":"01t7e000009AnPcAAK","Id":"8027e000001bPi0AAE","attributes":{"url":"/services/data/v58.0/sobjects/OrderItem/8027e000001bPi0AAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v58.0/sobjects/Pricebook2/01s7e000002eLFEAA2"},"Id":"01s7e000002eLFEAA2","IsDeleted":false,"Name":"Standard - Price Book","CreatedDate":"2023-07-21T18:54:30.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-07-21T18:54:30.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-07-21T18:54:30.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s7e000002eLFEAA2"],"Opportunities":["0067e00000NeuoEAAR"],"Accounts":["0017e00001iZwRxAAK"],"OrderItems":["8027e000001bPhzAAE","8027e000001bPi0AAE"],"Quotes":["a0z7e00000BDJloAAH"],"Opportunity":{"Id":"0067e00000NeuoEAAR","attributes":{"url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":2880.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z7e00000BDJloAAH","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/v59.0/sobjects/PricebookEntry/01u6s000006MyQrAAK"},"Id":"01u6s000006MyQrAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3LGAAY","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:18:46.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:46.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:46.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyQwAAK"},"Id":"01u6s000006MyQwAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qKAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:18:47.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:18:47.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:18:47.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlc3AAA"},"Id":"a0v6s000000tlc3AAA","IsDeleted":false,"Name":"QL-0001671","CreatedDate":"2023-11-09T19:18:53.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:01.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:01.000+0000","SBQQ__Quote__c":"a0z6s0000016DsGAAU","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":"01u6s000006MyQrAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3LGAAY","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-11-09","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-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.00,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.00,"SBQQ__TotalDiscountRate__c":0.000},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlcIAAQ"},"Id":"a0v6s000000tlcIAAQ","IsDeleted":false,"Name":"QL-0001674","CreatedDate":"2023-11-09T19:19:01.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:01.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:01.000+0000","SBQQ__Quote__c":"a0z6s0000016DsGAAU","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":2,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.00,"SBQQ__PartnerPrice__c":1440.00,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyQwAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qKAAQ","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-11-09","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-11-09 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":["01t6s000004g3LGAAY"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlc3AAA","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":"0000000494","SystemModstamp":"2023-11-09T19:19:05.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:05.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:04.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyQrAAK","OrderId":"8016s000001FXxkAAG","IsDeleted":false,"Product2Id":"01t6s000004g3LGAAY","Id":"8026s0000014Mv9AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mv9AAE","type":"OrderItem"}},{"PricebookEntries":[],"Products":["01t6s000004g3qKAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlcIAAQ","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":"0000000495","SystemModstamp":"2023-11-09T19:19:05.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:05.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:04.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyQwAAK","OrderId":"8016s000001FXxkAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qKAAQ","Id":"8026s0000014MvAAAU","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014MvAAAU","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE1EAAV"],"Accounts":["0016s00000fzBeFAAU"],"OrderItems":["8026s0000014Mv9AAE","8026s0000014MvAAAU"],"Quotes":["a0z6s0000016DsGAAU"],"Opportunity":{"Id":"0066s00000CfE1EAAV","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE1EAAV","type":"Opportunity"}},"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/","Skip_Past_Initial_Invoices__c":false,"SBQQ__OrderBookings__c":2880.00,"SBQQ__TaxAmount__c":0.00,"SBQQ__Quote__c":"a0z6s0000016DsGAAU","SBQQ__PriceCalcStatus__c":"Not Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription - End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-08-01T18:58:01.000+0000","LastViewedDate":"2023-08-01T18:58:01.000+0000","SystemModstamp":"2023-08-01T18:58:00.000+0000","IsDeleted":false,"LastModifiedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","CreatedById":"0057e00000VZBcyAAH","CreatedDate":"2023-08-01T18:57:59.000+0000","TotalAmount":2880.00,"OrderNumber":"00000969","StatusCode":"Activated","ActivatedById":"0057e00000VZBcyAAH","ActivatedDate":"2023-08-01T18:58:00.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-08-01","OpportunityId":"0067e00000NeuoEAAR","Pricebook2Id":"01s7e000002eLFEAA2","AccountId":"0017e00001iZwRxAAK","OwnerId":"0057e00000VZBcyAAH","Id":"8017e000000nQ6JAAU","attributes":{"url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU","type":"Order"}}],"errors":[{"sobject_field":"HasOptedOutOfEmail","sobject_type":"Contact","error_message":"Field + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:19:06.000+0000","LastViewedDate":"2023-11-09T19:19:06.000+0000","SystemModstamp":"2023-11-09T19:19:06.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:06.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:19:04.000+0000","TotalAmount":2880.00,"OrderNumber":"00000266","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:19:05.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE1EAAV","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBeFAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXxkAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXxkAAG","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 @@ -3420,10 +3449,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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6JAAU%27%0A + uri: https://connect-saas-89822-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%278016s000001FXxkAAG%27%0A body: encoding: US-ASCII string: '' @@ -3442,12 +3471,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:03 GMT + - Thu, 09 Nov 2023 19:19:07 GMT Set-Cookie: - - BrowserId=V9HNITCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:03 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:03 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:03 + - BrowserId=2px-zH80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3460,7 +3489,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7077/5000000 + - api-usage=67/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3469,11 +3498,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU"},"Type":"New","OpportunityId":"0067e00000NeuoEAAR","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0067e00000NeuoEAAR"},"SBQQ__AmendedContract__c":null}}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG"},"Type":"New","OpportunityId":"0066s00000CfE1EAAV","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE1EAAV"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278017e000000nQ6JAAU%27%20%20AND%20Status%20=%20%27Activated%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXxkAAG%27%20%20AND%20Status%20=%20%27Activated%27 body: encoding: US-ASCII string: '' @@ -3492,12 +3521,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:04 GMT + - Thu, 09 Nov 2023 19:19:07 GMT Set-Cookie: - - BrowserId=WA9ynzCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:04 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:04 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:04 + - BrowserId=2q0gBH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:07 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:07 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:07 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3510,7 +3539,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7077/5000000 + - api-usage=66/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3519,14 +3548,14 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU"},"Id":"8017e000000nQ6JAAU"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG"},"Id":"8016s000001FXxkAAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: name=REST+Account++2023-08-01+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0017e00001iZwRxAAK&metadata[salesforce_account_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F0017e00001iZwRxAAK + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBeFAAU&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBeFAAU headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3535,13 +3564,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded Idempotency-Key: - - ebed1071-b83b-46ab-86ed-cdf8d171a043 + - 8796b8d6-fa66-4ae3-9232-4eb53822e510 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3556,37 +3585,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:04 GMT + - Thu, 09 Nov 2023 19:19:08 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ebed1071-b83b-46ab-86ed-cdf8d171a043 + - 8796b8d6-fa66-4ae3-9232-4eb53822e510 Original-Request: - - req_GLRAoxaNfLxLYn + - req_Yo97ZSjA8kMNmL Request-Id: - - req_GLRAoxaNfLxLYn + - req_Yo97ZSjA8kMNmL 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: @@ -3595,11 +3631,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON81SQgGHG4Fa5", + "id": "cus_OyawwiTgkTJqRU", "object": "customer", "address": null, "balance": 0, - "created": 1690916284, + "created": 1699557548, "currency": null, "default_currency": null, "default_source": null, @@ -3607,7 +3643,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "BF687BAF", + "invoice_prefix": "1BE93632", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -3616,10 +3652,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwRxAAK", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwRxAAK" + "salesforce_account_id": "0016s00000fzBeFAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBeFAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -3627,13 +3663,13 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0017e00001iZwRxAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBeFAAU body: encoding: UTF-8 - string: '{"Stripe_ID__c":"cus_ON81SQgGHG4Fa5"}' + string: '{"Stripe_ID__c":"cus_OyawwiTgkTJqRU"}' headers: User-Agent: - Faraday v2.4.0 @@ -3651,12 +3687,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:05 GMT + - Thu, 09 Nov 2023 19:19:08 GMT Set-Cookie: - - BrowserId=WKp5fzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:05 + - BrowserId=2wCXOH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3671,17 +3707,17 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7078/5000000 + - api-usage=67/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnPXAA0&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnPXAA0 + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3LGAAY&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3LGAAY headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -3690,15 +3726,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_GLRAoxaNfLxLYn","request_duration_ms":478}}' + - '{"last_request_metrics":{"request_id":"req_Yo97ZSjA8kMNmL","request_duration_ms":394}}' Idempotency-Key: - - 89a96890-878b-42db-ab7f-0febe0d1f2a3 + - 6d75fd16-2ec8-45b2-833e-05e37a2c4571 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -3713,37 +3749,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:05 GMT + - Thu, 09 Nov 2023 19:19:08 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 89a96890-878b-42db-ab7f-0febe0d1f2a3 + - 6d75fd16-2ec8-45b2-833e-05e37a2c4571 Original-Request: - - req_66TPMzaDHPBP4c + - req_zVEunjUjYlkdB5 Request-Id: - - req_66TPMzaDHPBP4c + - req_zVEunjUjYlkdB5 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: @@ -3752,39 +3795,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON81gujfixuWqZ", + "id": "prod_OyawUDGgCDqTIG", "object": "product", "active": true, "attributes": [], - "created": 1690916285, + "created": 1699557548, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnPXAA0", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnPXAA0" + "salesforce_product2_id": "01t6s000004g3LGAAY", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3LGAAY" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-87", + "sku": "rest-product2--2023-11-09-000000-utc-2", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916285, + "updated": 1699557548, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3LGAAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON81gujfixuWqZ"}' + string: '{"Stripe_ID__c":"prod_OyawUDGgCDqTIG"}' headers: User-Agent: - Faraday v2.4.0 @@ -3802,12 +3846,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:05 GMT + - Thu, 09 Nov 2023 19:19:08 GMT Set-Cookie: - - BrowserId=WSGlazCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:05 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:05 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:05 + - BrowserId=20q_8X80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:08 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:08 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:08 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3822,14 +3866,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=72/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPXAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3LGAAY%27%0A body: encoding: US-ASCII string: '' @@ -3848,12 +3892,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:06 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Set-Cookie: - - BrowserId=WW5mXTCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:06 + - BrowserId=24a3aH80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3866,7 +3910,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7081/5000000 + - api-usage=71/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3876,10 +3920,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPXAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3LGAAY%27%0A body: encoding: US-ASCII string: '' @@ -3898,12 +3942,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:06 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Set-Cookie: - - BrowserId=WaeepTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:06 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:06 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:06 + - BrowserId=25Yg5X80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3916,7 +3960,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7078/5000000 + - api-usage=73/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -3926,10 +3970,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3LGAAY body: encoding: US-ASCII string: '' @@ -3948,12 +3992,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:07 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Set-Cookie: - - BrowserId=WeBiXjCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:07 + - BrowserId=262gzn80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -3966,9 +4010,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7078/5000000 + - api-usage=75/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:05 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -3977,15 +4021,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPXAA0"},"Id":"01t7e000009AnPXAA0","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:57:34.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:05.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:05.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/01t6s000004g3LGAAY"},"Id":"01t6s000004g3LGAAY","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:18:46.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:09.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:09.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_ON81gujfixuWqZ","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON81gujfixuWqZ"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_OyawUDGgCDqTIG","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OyawUDGgCDqTIG"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPhzAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mv9AAE%27%0A body: encoding: US-ASCII string: '' @@ -4004,12 +4048,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:07 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Set-Cookie: - - BrowserId=Wh4uTTCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:07 + - BrowserId=28AW_n80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4022,7 +4066,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=68/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4032,10 +4076,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPhzAAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mv9AAE%27%0A body: encoding: US-ASCII string: '' @@ -4054,12 +4098,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:07 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Set-Cookie: - - BrowserId=WlWSPjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:07 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:07 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:07 + - BrowserId=288yL380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4072,7 +4116,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7078/5000000 + - api-usage=69/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4082,10 +4126,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPXAA0%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3LGAAY%27%0A body: encoding: US-ASCII string: '' @@ -4104,12 +4148,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:08 GMT + - Thu, 09 Nov 2023 19:19:09 GMT Set-Cookie: - - BrowserId=WpFimjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:08 + - BrowserId=29833H80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:09 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4122,7 +4166,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7082/5000000 + - api-usage=74/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4132,13 +4176,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON81gujfixuWqZ&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi67AAB&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi67AAB + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OyawUDGgCDqTIG&metadata[salesforce_pricebook_entry_id]=01u6s000006MyQrAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyQrAAK headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4146,16 +4190,14 @@ http_interactions: - Bearer Content-Type: - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_66TPMzaDHPBP4c","request_duration_ms":260}}' Idempotency-Key: - - ff04a308-604e-4b86-8c04-4f6989cf0377 + - a6f77851-d9d9-48db-8c67-b71bd4fc1be5 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4170,37 +4212,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:08 GMT + - Thu, 09 Nov 2023 19:19:10 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ff04a308-604e-4b86-8c04-4f6989cf0377 + - a6f77851-d9d9-48db-8c67-b71bd4fc1be5 Original-Request: - - req_HSjxZOdf9h6FNR + - req_HFx2pxne0TnR1E Request-Id: - - req_HSjxZOdf9h6FNR + - req_HFx2pxne0TnR1E 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: @@ -4209,21 +4258,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNlkIsgf92XbAOcSsX7SHW", + "id": "price_1OAdkwIsgf92XbAO4nlTz9oy", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916288, + "created": 1699557550, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi67AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi67AAB" + "salesforce_pricebook_entry_id": "01u6s000006MyQrAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQrAAK" }, "nickname": null, - "product": "prod_ON81gujfixuWqZ", + "product": "prod_OyawUDGgCDqTIG", "recurring": { "aggregate_usage": null, "interval": "month", @@ -4238,13 +4287,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi67AAB + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyQrAAK body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNlkIsgf92XbAOcSsX7SHW"}' + string: '{"Stripe_ID__c":"price_1OAdkwIsgf92XbAO4nlTz9oy"}' headers: User-Agent: - Faraday v2.4.0 @@ -4262,12 +4311,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:08 GMT + - Thu, 09 Nov 2023 19:19:10 GMT Set-Cookie: - - BrowserId=WveevjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:08 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:08 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:08 + - BrowserId=3CBfkX80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4282,14 +4331,64 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=75/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014Mv9AAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:19:10 GMT + Set-Cookie: + - BrowserId=3Dp3Nn80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19: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=76/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hhEAA"},"Id":"a1N6s00000113hhEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPhzAAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlc3AAA%27 body: encoding: US-ASCII string: '' @@ -4308,12 +4407,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:09 GMT + - Thu, 09 Nov 2023 19:19:10 GMT Set-Cookie: - - BrowserId=WzliLjCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:09 + - BrowserId=3ErK1n80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4326,7 +4425,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=70/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -4335,11 +4434,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPQEAY"},"Id":"a1N7e000002flPQEAY"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5BEAS"},"Id":"a1P6s000001Bk5BEAS"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPQEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hhEAA body: encoding: US-ASCII string: '' @@ -4358,12 +4457,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:09 GMT + - Thu, 09 Nov 2023 19:19:10 GMT Set-Cookie: - - BrowserId=W3FibzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:09 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:09 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:09 + - BrowserId=3FlxSH80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4376,9 +4475,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=76/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:00 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4387,12 +4486,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPQEAY"},"Id":"a1N7e000002flPQEAY","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0129","CreatedDate":"2023-08-01T18:58:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:00.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 - off coupon","Order_Item__c":"8027e000001bPhzAAE","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEs7EAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hhEAA"},"Id":"a1N6s00000113hhEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0005","CreatedDate":"2023-11-09T19:19:06.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:06.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:06.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 + off coupon","Order_Item__c":"8026s0000014Mv9AAE","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHUEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEs7EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHUEAY body: encoding: US-ASCII string: '' @@ -4411,12 +4510,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:10 GMT + - Thu, 09 Nov 2023 19:19:10 GMT Set-Cookie: - - BrowserId=W6ifGjCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:10 + - BrowserId=3GdTXH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:10 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4429,9 +4528,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7083/5000000 + - api-usage=68/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:57:57 GMT + - Thu, 09 Nov 2023 19:19:03 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4440,15 +4539,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEs7EAG"},"Id":"a1R7e000007JEs7EAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0110","CreatedDate":"2023-08-01T18:57:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:57:57.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:57:57.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHUEAY"},"Id":"a1R6s000000uvHUEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0004","CreatedDate":"2023-11-09T19:19:03.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:03.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:03.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/coupons body: encoding: UTF-8 - string: name=%2455+off+coupon&amount_off=5500&duration=forever&metadata[salesforce_order_stripe_coupon_id]=a1N7e000002flPQEAY&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1N7e000002flPQEAY¤cy=usd + string: name=%2455+off+coupon&amount_off=5500&duration=forever&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hhEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hhEAA¤cy=usd headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -4457,15 +4556,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_HSjxZOdf9h6FNR","request_duration_ms":256}}' + - '{"last_request_metrics":{"request_id":"req_zVEunjUjYlkdB5","request_duration_ms":259}}' Idempotency-Key: - - cd94c6ee-86d6-400d-84f8-8af125e0ae1d + - e5712f81-4a89-41bd-a626-bae65b5b44c5 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -4480,37 +4579,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:10 GMT + - Thu, 09 Nov 2023 19:19:11 GMT Content-Type: - application/json Content-Length: - - '540' + - '535' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - cd94c6ee-86d6-400d-84f8-8af125e0ae1d + - e5712f81-4a89-41bd-a626-bae65b5b44c5 Original-Request: - - req_eVyFcYSqTrIvSZ + - req_wAOFZtecr8pvM4 Request-Id: - - req_eVyFcYSqTrIvSZ + - req_wAOFZtecr8pvM4 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: @@ -4519,18 +4625,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "MynHSGGW", + "id": "F1iFGVtu", "object": "coupon", "amount_off": 5500, - "created": 1690916290, + "created": 1699557550, "currency": "usd", "duration": "forever", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPQEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPQEAY" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hhEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hhEAA" }, "name": "$55 off coupon", "percent_off": null, @@ -4538,13 +4644,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPQEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hhEAA body: encoding: UTF-8 - string: '{"Stripe_ID__c":"MynHSGGW"}' + string: '{"Stripe_ID__c":"F1iFGVtu"}' headers: User-Agent: - Faraday v2.4.0 @@ -4562,12 +4668,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:10 GMT + - Thu, 09 Nov 2023 19:19:11 GMT Set-Cookie: - - BrowserId=XAWMPDCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:10 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:10 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:10 + - BrowserId=3KCMHH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4582,14 +4688,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7084/5000000 + - api-usage=76/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -4608,12 +4714,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:11 GMT + - Thu, 09 Nov 2023 19:19:11 GMT Set-Cookie: - - BrowserId=XEGDDTCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:11 + - BrowserId=3LSwtn80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -4626,11 +4732,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=77/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -4747,7 +4853,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -4758,14 +4864,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -4933,7 +5037,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 @@ -4949,7 +5054,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -4967,9 +5074,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -5113,9 +5219,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -5237,9 +5343,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 @@ -5284,13 +5399,14 @@ http_interactions: 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":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 + 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":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 @@ -5526,7 +5642,8 @@ http_interactions: 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":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 + 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 @@ -5712,7 +5829,8 @@ http_interactions: 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":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 + 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 @@ -5723,7 +5841,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -5795,7 +5918,8 @@ http_interactions: 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":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 + 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 @@ -5841,7 +5965,8 @@ http_interactions: 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":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 + 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 @@ -5901,7 +6026,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -5926,7 +6051,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -5982,13 +6118,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEs7EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHUEAY body: encoding: UTF-8 - string: '{"Stripe_ID__c":"MynHSGGW"}' + string: '{"Stripe_ID__c":"F1iFGVtu"}' headers: User-Agent: - Faraday v2.4.0 @@ -6006,12 +6142,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:11 GMT + - Thu, 09 Nov 2023 19:19:11 GMT Set-Cookie: - - BrowserId=XMl3nDCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:11 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:11 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:11 + - BrowserId=3OtQfH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6026,14 +6162,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7081/5000000 + - api-usage=69/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects body: encoding: US-ASCII string: '' @@ -6052,12 +6188,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:12 GMT + - Thu, 09 Nov 2023 19:19:11 GMT Set-Cookie: - - BrowserId=XQeSRDCdEe64OnvvtTY2PA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:12 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:12 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:12 + - BrowserId=3Pukb380Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:11 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -6070,11 +6206,11 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7082/5000000 + - api-usage=77/5000000 Etag: - - '"6de44be0--gzip"' + - '"80b46bc9--gzip"' Last-Modified: - - Fri, 21 Jul 2023 22:28:58 GMT + - Mon, 30 Oct 2023 17:32:26 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -6191,7 +6327,7 @@ http_interactions: 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","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async @@ -6202,14 +6338,12 @@ http_interactions: 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","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute - Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__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","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle @@ -6377,7 +6511,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 @@ -6393,7 +6528,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":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential @@ -6411,9 +6548,8 @@ http_interactions: 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 + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom @@ -6557,9 +6693,9 @@ http_interactions: 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","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration - Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":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","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow @@ -6681,9 +6817,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 @@ -6728,13 +6873,14 @@ http_interactions: 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":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 + 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":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 @@ -6970,7 +7116,8 @@ http_interactions: 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":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 + 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 @@ -7156,7 +7303,8 @@ http_interactions: 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":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 + 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 @@ -7167,7 +7315,12 @@ http_interactions: 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","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service @@ -7239,7 +7392,8 @@ http_interactions: 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":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 + 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 @@ -7285,7 +7439,8 @@ http_interactions: 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":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 + 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 @@ -7345,7 +7500,7 @@ http_interactions: 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 + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User @@ -7370,7 +7525,18 @@ http_interactions: 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 + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work @@ -7426,13 +7592,13 @@ 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: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/products body: encoding: UTF-8 - string: name=REST+Product2++2023-08-01+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t7e000009AnPcAAK&metadata[salesforce_product2_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01t7e000009AnPcAAK + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qKAAQ&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qKAAQ headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7441,15 +7607,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_eVyFcYSqTrIvSZ","request_duration_ms":222}}' + - '{"last_request_metrics":{"request_id":"req_wAOFZtecr8pvM4","request_duration_ms":260}}' Idempotency-Key: - - ca8f82a9-f6f4-493c-9993-eec08fc15dac + - b372dd9e-c129-4142-ab16-63047fed6bb0 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7464,37 +7630,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:13 GMT + - Thu, 09 Nov 2023 19:19:12 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ca8f82a9-f6f4-493c-9993-eec08fc15dac + - b372dd9e-c129-4142-ab16-63047fed6bb0 Original-Request: - - req_VnWWLg6CTcfMSZ + - req_TvyNLhmlsEk0ya Request-Id: - - req_VnWWLg6CTcfMSZ + - req_TvyNLhmlsEk0ya 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: @@ -7503,39 +7676,40 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "prod_ON81qSTZjvirPI", + "id": "prod_OyawP4rOaQlBCv", "object": "product", "active": true, "attributes": [], - "created": 1690916293, + "created": 1699557552, "default_price": null, "description": "A great description", + "features": [], "identifiers": {}, "images": [], "livemode": false, "metadata": { - "salesforce_product2_id": "01t7e000009AnPcAAK", - "salesforce_product2_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01t7e000009AnPcAAK" + "salesforce_product2_id": "01t6s000004g3qKAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qKAAQ" }, - "name": "REST Product2 2023-08-01 00:00:00 UTC", + "name": "REST Product2 2023-11-09 00:00:00 UTC", "package_dimensions": null, "product_class": null, "shippable": null, - "sku": "rest-product2--2023-08-01-000000-utc-88", + "sku": "rest-product2--2023-11-09-000000-utc-3", "statement_descriptor": null, "tax_code": null, "type": "service", "unit_label": null, - "updated": 1690916293, + "updated": 1699557552, "url": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qKAAQ body: encoding: UTF-8 - string: '{"Stripe_ID__c":"prod_ON81qSTZjvirPI"}' + string: '{"Stripe_ID__c":"prod_OyawP4rOaQlBCv"}' headers: User-Agent: - Faraday v2.4.0 @@ -7553,12 +7727,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:13 GMT + - Thu, 09 Nov 2023 19:19:12 GMT Set-Cookie: - - BrowserId=XerGSTCdEe6ZADeBgbAOng; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:13 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:13 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:13 + - BrowserId=3WiW1n80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7573,14 +7747,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7085/5000000 + - api-usage=70/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPcAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qKAAQ%27%0A body: encoding: US-ASCII string: '' @@ -7599,12 +7773,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:14 GMT + - Thu, 09 Nov 2023 19:19:12 GMT Set-Cookie: - - BrowserId=XjU8lzCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:14 + - BrowserId=3Yb0mn80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7617,7 +7791,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7081/5000000 + - api-usage=71/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7627,10 +7801,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qKAAQ body: encoding: US-ASCII string: '' @@ -7649,12 +7823,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:14 GMT + - Thu, 09 Nov 2023 19:19:12 GMT Set-Cookie: - - BrowserId=XoejHjCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:14 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:14 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:14 + - BrowserId=3ZchPH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:12 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7667,9 +7841,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=77/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:13 GMT + - Thu, 09 Nov 2023 19:19:12 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -7678,15 +7852,15 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Product2","url":"/services/data/v58.0/sobjects/Product2/01t7e000009AnPcAAK"},"Id":"01t7e000009AnPcAAK","Name":"REST - Product2 2023-08-01 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A - great description","IsActive":true,"CreatedDate":"2023-08-01T18:57:36.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:13.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:13.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/01t6s000004g3qKAAQ"},"Id":"01t6s000004g3qKAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:18:47.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:12.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:12.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_ON81qSTZjvirPI","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_ON81qSTZjvirPI"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 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_OyawP4rOaQlBCv","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OyawP4rOaQlBCv"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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%278027e000001bPi0AAE%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014MvAAAU%27%0A body: encoding: US-ASCII string: '' @@ -7705,12 +7879,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:15 GMT + - Thu, 09 Nov 2023 19:19:13 GMT Set-Cookie: - - BrowserId=XsijvjCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:15 + - BrowserId=3b274n80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7723,7 +7897,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7075/5000000 + - api-usage=72/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7733,10 +7907,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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%2701t7e000009AnPcAAK%27%0A + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qKAAQ%27%0A body: encoding: US-ASCII string: '' @@ -7755,12 +7929,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:15 GMT + - Thu, 09 Nov 2023 19:19:13 GMT Set-Cookie: - - BrowserId=XwnyljCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:15 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:15 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:15 + - BrowserId=3c5dMX80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7773,7 +7947,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=78/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7783,13 +7957,13 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_ON81qSTZjvirPI&metadata[salesforce_pricebook_entry_id]=01u7e00000Isi6CAAR&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F01u7e00000Isi6CAAR + string: currency=usd&unit_amount_decimal=12000.0&recurring[interval_count]=1&recurring[usage_type]=licensed&recurring[interval]=month&product=prod_OyawP4rOaQlBCv&metadata[salesforce_pricebook_entry_id]=01u6s000006MyQwAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyQwAAK headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -7798,15 +7972,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_VnWWLg6CTcfMSZ","request_duration_ms":267}}' + - '{"last_request_metrics":{"request_id":"req_HFx2pxne0TnR1E","request_duration_ms":245}}' Idempotency-Key: - - af2dd47e-6e0e-4ed6-aeda-79eab5227316 + - ec5cca1c-9475-4b19-9b15-ecf5d4fd5621 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -7821,37 +7995,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:16 GMT + - Thu, 09 Nov 2023 19:19:13 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - af2dd47e-6e0e-4ed6-aeda-79eab5227316 + - ec5cca1c-9475-4b19-9b15-ecf5d4fd5621 Original-Request: - - req_J6lhyJRb4eBbo6 + - req_Jl8VtP8ny9ky2W Request-Id: - - req_J6lhyJRb4eBbo6 + - req_Jl8VtP8ny9ky2W 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: @@ -7860,21 +8041,21 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "price_1NaNlrIsgf92XbAOGii4qtJS", + "id": "price_1OAdkzIsgf92XbAOa0RcOa1P", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916295, + "created": 1699557553, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6CAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6CAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyQwAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQwAAK" }, "nickname": null, - "product": "prod_ON81qSTZjvirPI", + "product": "prod_OyawP4rOaQlBCv", "recurring": { "aggregate_usage": null, "interval": "month", @@ -7889,13 +8070,13 @@ http_interactions: "unit_amount": 12000, "unit_amount_decimal": "12000" } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u7e00000Isi6CAAR + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyQwAAK body: encoding: UTF-8 - string: '{"Stripe_ID__c":"price_1NaNlrIsgf92XbAOGii4qtJS"}' + string: '{"Stripe_ID__c":"price_1OAdkzIsgf92XbAOa0RcOa1P"}' headers: User-Agent: - Faraday v2.4.0 @@ -7913,12 +8094,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:16 GMT + - Thu, 09 Nov 2023 19:19:13 GMT Set-Cookie: - - BrowserId=X2o7GTCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:16 + - BrowserId=3gQ63H80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7933,14 +8114,14 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7079/5000000 + - api-usage=71/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278027e000001bPi0AAE%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014MvAAAU%27 body: encoding: US-ASCII string: '' @@ -7959,12 +8140,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:16 GMT + - Thu, 09 Nov 2023 19:19:13 GMT Set-Cookie: - - BrowserId=X6021DCdEe6tYEOIfUf4IA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:16 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:16 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:16 + - BrowserId=3hoMl380Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -7977,7 +8158,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7082/5000000 + - api-usage=71/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -7986,11 +8167,11 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPPEAY"},"Id":"a1N7e000002flPPEAY"}]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hgEAA"},"Id":"a1N6s00000113hgEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPPEAY + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlcIAAQ%27 body: encoding: US-ASCII string: '' @@ -8009,12 +8190,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:17 GMT + - Thu, 09 Nov 2023 19:19:13 GMT Set-Cookie: - - BrowserId=X-bkRzCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:17 + - BrowserId=3ifH3n80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8027,9 +8208,59 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7080/5000000 + - api-usage=68/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":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk5GEAS"},"Id":"a1P6s000001Bk5GEAS"}]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hgEAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:19:13 GMT + Set-Cookie: + - BrowserId=3jTAin80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19: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=72/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:00 GMT + - Thu, 09 Nov 2023 19:19:06 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8038,12 +8269,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N7e000002flPPEAY"},"Id":"a1N7e000002flPPEAY","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0128","CreatedDate":"2023-08-01T18:58:00.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:00.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:00.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 - off coupon","Order_Item__c":"8027e000001bPi0AAE","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R7e000007JEs7EAG","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hgEAA"},"Id":"a1N6s00000113hgEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0004","CreatedDate":"2023-11-09T19:19:06.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:06.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:06.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 + off coupon","Order_Item__c":"8026s0000014MvAAAU","Order__c":null,"Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHUEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEs7EAG + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHUEAY body: encoding: US-ASCII string: '' @@ -8062,12 +8293,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:17 GMT + - Thu, 09 Nov 2023 19:19:13 GMT Set-Cookie: - - BrowserId=YCT_nTCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:17 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:17 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:17 + - BrowserId=3kO04H80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:13 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8080,9 +8311,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7076/5000000 + - api-usage=72/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:12 GMT + - Thu, 09 Nov 2023 19:19:11 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -8091,12 +8322,12 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R7e000007JEs7EAG"},"Id":"a1R7e000007JEs7EAG","OwnerId":"0057e00000VZBcyAAH","IsDeleted":false,"Name":"0110","CreatedDate":"2023-08-01T18:57:57.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:12.000+0000","LastModifiedById":"0057e00000VZBcyAAH","SystemModstamp":"2023-08-01T18:58:12.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 - off coupon","Percent_Off__c":null,"Stripe_ID__c":"MynHSGGW","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/MynHSGGW"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHUEAY"},"Id":"a1R6s000000uvHUEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0004","CreatedDate":"2023-11-09T19:19:03.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:11.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:19:11.000+0000","Amount_Off__c":55.0,"Duration_In_Months__c":null,"Duration__c":"forever","Max_Redemptions__c":null,"Name__c":"$55 + off coupon","Percent_Off__c":null,"Stripe_ID__c":"F1iFGVtu","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/F1iFGVtu"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/MynHSGGW + uri: https://api.stripe.com/v1/coupons/F1iFGVtu body: encoding: US-ASCII string: '' @@ -8108,13 +8339,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_J6lhyJRb4eBbo6","request_duration_ms":238}}' + - '{"last_request_metrics":{"request_id":"req_Jl8VtP8ny9ky2W","request_duration_ms":249}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8129,31 +8360,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:17 GMT + - Thu, 09 Nov 2023 19:19:14 GMT Content-Type: - application/json Content-Length: - - '540' + - '535' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_0F0eF7NYc8nFbs + - req_l3g7IYlpIiDisS Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8162,18 +8400,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "MynHSGGW", + "id": "F1iFGVtu", "object": "coupon", "amount_off": 5500, - "created": 1690916290, + "created": 1699557550, "currency": "usd", "duration": "forever", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPQEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPQEAY" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hhEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hhEAA" }, "name": "$55 off coupon", "percent_off": null, @@ -8181,13 +8419,13 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post - uri: https://api.stripe.com/v1/coupons/MynHSGGW + uri: https://api.stripe.com/v1/coupons/F1iFGVtu body: encoding: UTF-8 - string: metadata[salesforce_quote_stripe_coupon_id]=a1R7e000007JEs7EAG&metadata[salesforce_quote_stripe_coupon_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2Fa1R7e000007JEs7EAG + string: metadata[salesforce_quote_stripe_coupon_id]=a1R6s000000uvHUEAY&metadata[salesforce_quote_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1R6s000000uvHUEAY headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -8196,15 +8434,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_0F0eF7NYc8nFbs","request_duration_ms":171}}' + - '{"last_request_metrics":{"request_id":"req_l3g7IYlpIiDisS","request_duration_ms":203}}' Idempotency-Key: - - 6ed50273-29c5-4af4-8007-d23ef4928018 + - c6ee54e7-d6fa-46be-b18b-8b24ea4e854d 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8219,37 +8457,44 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:18 GMT + - Thu, 09 Nov 2023 19:19:14 GMT Content-Type: - application/json Content-Length: - - '733' + - '723' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 6ed50273-29c5-4af4-8007-d23ef4928018 + - c6ee54e7-d6fa-46be-b18b-8b24ea4e854d Original-Request: - - req_gph7QqRN4xlY6T + - req_IQyulgpmLdB26y Request-Id: - - req_gph7QqRN4xlY6T + - req_IQyulgpmLdB26y 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: @@ -8258,20 +8503,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "MynHSGGW", + "id": "F1iFGVtu", "object": "coupon", "amount_off": 5500, - "created": 1690916290, + "created": 1699557550, "currency": "usd", "duration": "forever", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPQEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPQEAY", - "salesforce_quote_stripe_coupon_id": "a1R7e000007JEs7EAG", - "salesforce_quote_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1R7e000007JEs7EAG" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hhEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hhEAA", + "salesforce_quote_stripe_coupon_id": "a1R6s000000uvHUEAY", + "salesforce_quote_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1R6s000000uvHUEAY" }, "name": "$55 off coupon", "percent_off": null, @@ -8279,30 +8524,18 @@ http_interactions: "times_redeemed": 0, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/prices/price_1NaNlkIsgf92XbAOcSsX7SHW + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXxkAAG%27 body: encoding: US-ASCII string: '' headers: User-Agent: - - Stripe/v1 RubyBindings/7.1.0 + - Faraday v2.4.0 Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_gph7QqRN4xlY6T","request_duration_ms":225}}' - Stripe-Version: - - '2020-08-27' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' - Stripe-Account: - - STRIPE_MERCHANT_ID + - OAuth Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -8312,75 +8545,39 @@ http_interactions: code: 200 message: OK headers: - Server: - - nginx Date: - - Tue, 01 Aug 2023 18:58:18 GMT - Content-Type: - - application/json - Content-Length: - - '822' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, HEAD, OPTIONS, DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Request-Id: - - req_fqMkqWnFvYz0o5 - Stripe-Account: - - acct_15uapDIsgf92XbAO - Stripe-Version: - - '2020-08-27' - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode + - Thu, 09 Nov 2023 19:19:14 GMT + Set-Cookie: + - BrowserId=3pxcJ380Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:14 + GMT; Max-Age=31536000 Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=73/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked body: - encoding: UTF-8 - string: |- - { - "id": "price_1NaNlkIsgf92XbAOcSsX7SHW", - "object": "price", - "active": true, - "billing_scheme": "per_unit", - "created": 1690916288, - "currency": "usd", - "custom_unit_amount": null, - "livemode": false, - "lookup_key": null, - "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi67AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi67AAB" - }, - "nickname": null, - "product": "prod_ON81gujfixuWqZ", - "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: Tue, 01 Aug 2023 18:57:33 GMT + encoding: ASCII-8BIT + string: '{"totalSize":0,"done":true,"records":[]}' + recorded_at: Thu, 09 Nov 2023 19:18:45 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_Stripe_Coupon__c%20where%20Order__c%20=%20%278017e000000nQ6JAAU%27 + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DsGAAU%27 body: encoding: US-ASCII string: '' @@ -8399,12 +8596,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:18 GMT + - Thu, 09 Nov 2023 19:19:14 GMT Set-Cookie: - - BrowserId=YL1uLzCdEe6aP6F4JRfW4Q; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:18 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:18 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:18 + - BrowserId=3qxhyH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:14 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:14 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:14 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8417,7 +8614,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7077/5000000 + - api-usage=73/5000000 Content-Type: - application/json;charset=UTF-8 Vary: @@ -8427,10 +8624,10 @@ http_interactions: body: encoding: ASCII-8BIT string: '{"totalSize":0,"done":true,"records":[]}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_ON81SQgGHG4Fa5?expand%5B%5D=test_clock + uri: https://api.stripe.com/v1/customers/cus_OyawwiTgkTJqRU?expand%5B%5D=test_clock body: encoding: US-ASCII string: '' @@ -8442,13 +8639,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fqMkqWnFvYz0o5","request_duration_ms":191}}' + - '{"last_request_metrics":{"request_id":"req_IQyulgpmLdB26y","request_duration_ms":247}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8463,31 +8660,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:18 GMT + - Thu, 09 Nov 2023 19:19:14 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_EmB2tlIj9tdJD5 + - req_JYgyBf483EooWv Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8496,11 +8701,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_ON81SQgGHG4Fa5", + "id": "cus_OyawwiTgkTJqRU", "object": "customer", "address": null, "balance": 0, - "created": 1690916284, + "created": 1699557548, "currency": null, "default_currency": null, "default_source": null, @@ -8508,7 +8713,7 @@ http_interactions: "description": null, "discount": null, "email": null, - "invoice_prefix": "BF687BAF", + "invoice_prefix": "1BE93632", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -8517,10 +8722,10 @@ http_interactions: }, "livemode": false, "metadata": { - "salesforce_account_id": "0017e00001iZwRxAAK", - "salesforce_account_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/0017e00001iZwRxAAK" + "salesforce_account_id": "0016s00000fzBeFAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBeFAAU" }, - "name": "REST Account 2023-08-01 00:00:00 UTC", + "name": "REST Account 2023-11-09 00:00:00 UTC", "next_invoice_sequence": 1, "phone": null, "preferred_locales": [], @@ -8528,13 +8733,118 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdkwIsgf92XbAO4nlTz9oy + 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_JYgyBf483EooWv","request_duration_ms":212}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:19:15 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_cuvOSguckNFSKi + 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_1OAdkwIsgf92XbAO4nlTz9oy", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557550, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyQrAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQrAAK" + }, + "nickname": null, + "product": "prod_OyawUDGgCDqTIG", + "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: Thu, 09 Nov 2023 19:18:45 GMT - request: method: post uri: https://api.stripe.com/v1/subscription_schedules body: encoding: UTF-8 - string: end_behavior=cancel&metadata[salesforce_order_id]=8017e000000nQ6JAAU&metadata[salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6JAAU&start_date=1690848000&customer=cus_ON81SQgGHG4Fa5&phases[0][items][0][price]=price_1NaNlkIsgf92XbAOcSsX7SHW&phases[0][items][0][metadata][salesforce_order_item_id]=8027e000001bPhzAAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPhzAAE&phases[0][items][0][discounts][0][coupon]=MynHSGGW&phases[0][items][0][quantity]=1&phases[0][items][1][price]=price_1NaNlrIsgf92XbAOGii4qtJS&phases[0][items][1][metadata][salesforce_order_item_id]=8027e000001bPi0AAE&phases[0][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8027e000001bPi0AAE&phases[0][items][1][discounts][0][coupon]=MynHSGGW&phases[0][items][1][quantity]=1&phases[0][end_date]=1722470400&phases[0][metadata][salesforce_order_id]=8017e000000nQ6JAAU&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fability-innovation-7335-dev-ed.scratch.my.salesforce.com%2F8017e000000nQ6JAAU + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXxkAAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxkAAG&start_date=1699488000&customer=cus_OyawwiTgkTJqRU&phases[0][items][0][price]=price_1OAdkwIsgf92XbAO4nlTz9oy&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014Mv9AAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014Mv9AAE&phases[0][items][0][discounts][0][coupon]=F1iFGVtu&phases[0][items][0][quantity]=1&phases[0][items][1][price]=price_1OAdkzIsgf92XbAOa0RcOa1P&phases[0][items][1][metadata][salesforce_order_item_id]=8026s0000014MvAAAU&phases[0][items][1][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014MvAAAU&phases[0][items][1][discounts][0][coupon]=F1iFGVtu&phases[0][items][1][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXxkAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxkAAG headers: User-Agent: - Stripe/v1 RubyBindings/7.1.0 @@ -8543,15 +8853,15 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_EmB2tlIj9tdJD5","request_duration_ms":182}}' + - '{"last_request_metrics":{"request_id":"req_TvyNLhmlsEk0ya","request_duration_ms":262}}' Idempotency-Key: - - 9c8684a7-5875-48ae-b59c-535e1780466b + - 95d3a92a-8be3-4089-8b49-90d7bd5761f0 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8566,37 +8876,45 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:19 GMT + - Thu, 09 Nov 2023 19:19:15 GMT Content-Type: - application/json Content-Length: - - '3148' + - '3128' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Idempotency-Key: - - 9c8684a7-5875-48ae-b59c-535e1780466b + - 95d3a92a-8be3-4089-8b49-90d7bd5761f0 Original-Request: - - req_bKiVCv57zPOdIK + - req_hDSTnOBXCJdp3V Request-Id: - - req_bKiVCv57zPOdIK + - req_hDSTnOBXCJdp3V 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: @@ -8605,17 +8923,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNlvIsgf92XbAOv6qjrpDk", + "id": "sub_sched_1OAdl1Isgf92XbAOa9GCfYUi", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916299, + "created": 1699557555, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON81SQgGHG4Fa5", + "customer": "cus_OyawwiTgkTJqRU", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8634,8 +8952,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6JAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6JAAU" + "salesforce_order_id": "8016s000001FXxkAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxkAAG" }, "phases": [ { @@ -8650,23 +8968,23 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "MynHSGGW", + "coupon": "F1iFGVtu", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPhzAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPhzAAE" + "salesforce_order_item_id": "8026s0000014Mv9AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mv9AAE" }, - "plan": "price_1NaNlkIsgf92XbAOcSsX7SHW", - "price": "price_1NaNlkIsgf92XbAOcSsX7SHW", + "plan": "price_1OAdkwIsgf92XbAO4nlTz9oy", + "price": "price_1OAdkwIsgf92XbAO4nlTz9oy", "quantity": 1, "tax_rates": [] }, @@ -8674,27 +8992,27 @@ http_interactions: "billing_thresholds": null, "discounts": [ { - "coupon": "MynHSGGW", + "coupon": "F1iFGVtu", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi0AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi0AAE" + "salesforce_order_item_id": "8026s0000014MvAAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvAAAU" }, - "plan": "price_1NaNlrIsgf92XbAOGii4qtJS", - "price": "price_1NaNlrIsgf92XbAOGii4qtJS", + "plan": "price_1OAdkzIsgf92XbAOa0RcOa1P", + "price": "price_1OAdkzIsgf92XbAOa0RcOa1P", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6JAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6JAAU" + "salesforce_order_id": "8016s000001FXxkAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxkAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -8704,16 +9022,16 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNlvIsgf92XbAOM0ssEiHy", + "subscription": "sub_1OAdl1Isgf92XbAOQxinykoz", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG body: encoding: UTF-8 - string: '{"Stripe_ID__c":"sub_sched_1NaNlvIsgf92XbAOv6qjrpDk"}' + string: '{"Stripe_ID__c":"sub_sched_1OAdl1Isgf92XbAOa9GCfYUi"}' headers: User-Agent: - Faraday v2.4.0 @@ -8731,12 +9049,12 @@ http_interactions: message: No Content headers: Date: - - Tue, 01 Aug 2023 18:58:20 GMT + - Thu, 09 Nov 2023 19:19:15 GMT Set-Cookie: - - BrowserId=YaQldzCdEe6dibfjHAp7ZA; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:20 + - BrowserId=32fCgn80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:15 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:15 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:15 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8751,18 +9069,18 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7082/5000000 + - api-usage=74/5000000 body: encoding: UTF-8 string: '' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: patch - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8017e000000nQ6JAAU-8017e000000nQ6JAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXxkAAG-8016s000001FXxkAAG body: encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6JAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6JAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Sync - Successful, created Stripe Subscription Schedule Object with ID: sub_sched_1NaNlvIsgf92XbAOv6qjrpDk","Resolution_Status__c":"Success"}' + string: '{"Primary_Record_ID__c":"8016s000001FXxkAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXxkAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdl1Isgf92XbAOa9GCfYUi","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_hDSTnOBXCJdp3V"}' headers: User-Agent: - Faraday v2.4.0 @@ -8780,12 +9098,12 @@ http_interactions: message: Created headers: Date: - - Tue, 01 Aug 2023 18:58:20 GMT + - Thu, 09 Nov 2023 19:19:16 GMT Set-Cookie: - - BrowserId=YfSOvjCdEe6NISPaolPCcw; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:20 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:20 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:20 + - BrowserId=34xhEn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -8798,20 +9116,20 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7081/5000000 + - api-usage=69/5000000 Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W7e000002GrLQEA0" + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxccEAC" Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: - chunked body: encoding: UTF-8 - string: '{"id":"a1W7e000002GrLQEA0","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + string: '{"id":"a1W6s000000KxccEAC","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNlvIsgf92XbAOv6qjrpDk?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdl1Isgf92XbAOa9GCfYUi?expand%5B%5D=phases.add_invoice_items.price&expand%5B%5D=phases.items.price body: encoding: US-ASCII string: '' @@ -8823,13 +9141,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_bKiVCv57zPOdIK","request_duration_ms":958}}' + - '{"last_request_metrics":{"request_id":"req_cuvOSguckNFSKi","request_duration_ms":207}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin22","engine":"ruby","publisher":"stripe","uname":"Darwin - st-rish2 22.5.0 Darwin Kernel Version 22.5.0: Thu Jun 8 22:22:20 PDT 2023; - root:xnu-8796.121.3~7/RELEASE_ARM64_T6000 arm64","hostname":"st-rish2"}' + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -8844,31 +9162,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:20 GMT + - Thu, 09 Nov 2023 19:19:16 GMT Content-Type: - application/json Content-Length: - - '5308' + - '5278' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_BHsAyRnDVivCoo + - req_gOIYs3cbzRfJAA Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -8877,17 +9203,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNlvIsgf92XbAOv6qjrpDk", + "id": "sub_sched_1OAdl1Isgf92XbAOa9GCfYUi", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916299, + "created": 1699557555, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON81SQgGHG4Fa5", + "customer": "cus_OyawwiTgkTJqRU", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -8906,8 +9232,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6JAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6JAAU" + "salesforce_order_id": "8016s000001FXxkAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxkAAG" }, "phases": [ { @@ -8922,38 +9248,38 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "MynHSGGW", + "coupon": "F1iFGVtu", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPhzAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPhzAAE" + "salesforce_order_item_id": "8026s0000014Mv9AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mv9AAE" }, - "plan": "price_1NaNlkIsgf92XbAOcSsX7SHW", + "plan": "price_1OAdkwIsgf92XbAO4nlTz9oy", "price": { - "id": "price_1NaNlkIsgf92XbAOcSsX7SHW", + "id": "price_1OAdkwIsgf92XbAO4nlTz9oy", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916288, + "created": 1699557550, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi67AAB", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi67AAB" + "salesforce_pricebook_entry_id": "01u6s000006MyQrAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQrAAK" }, "nickname": null, - "product": "prod_ON81gujfixuWqZ", + "product": "prod_OyawUDGgCDqTIG", "recurring": { "aggregate_usage": null, "interval": "month", @@ -8975,31 +9301,31 @@ http_interactions: "billing_thresholds": null, "discounts": [ { - "coupon": "MynHSGGW", + "coupon": "F1iFGVtu", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi0AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi0AAE" + "salesforce_order_item_id": "8026s0000014MvAAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvAAAU" }, - "plan": "price_1NaNlrIsgf92XbAOGii4qtJS", + "plan": "price_1OAdkzIsgf92XbAOa0RcOa1P", "price": { - "id": "price_1NaNlrIsgf92XbAOGii4qtJS", + "id": "price_1OAdkzIsgf92XbAOa0RcOa1P", "object": "price", "active": true, "billing_scheme": "per_unit", - "created": 1690916295, + "created": 1699557553, "currency": "usd", "custom_unit_amount": null, "livemode": false, "lookup_key": null, "metadata": { - "salesforce_pricebook_entry_id": "01u7e00000Isi6CAAR", - "salesforce_pricebook_entry_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/01u7e00000Isi6CAAR" + "salesforce_pricebook_entry_id": "01u6s000006MyQwAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQwAAK" }, "nickname": null, - "product": "prod_ON81qSTZjvirPI", + "product": "prod_OyawP4rOaQlBCv", "recurring": { "aggregate_usage": null, "interval": "month", @@ -9019,12 +9345,12 @@ http_interactions: } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6JAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6JAAU" + "salesforce_order_id": "8016s000001FXxkAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxkAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -9034,13 +9360,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNlvIsgf92XbAOM0ssEiHy", + "subscription": "sub_1OAdl1Isgf92XbAOQxinykoz", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG body: encoding: US-ASCII string: '' @@ -9059,12 +9385,12 @@ http_interactions: message: OK headers: Date: - - Tue, 01 Aug 2023 18:58:21 GMT + - Thu, 09 Nov 2023 19:19:16 GMT Set-Cookie: - - BrowserId=YlrK4zCdEe6FfkeBuaLXIQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:58:21 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:21 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:58:21 + - BrowserId=38oG4n80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:16 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -9077,9 +9403,9 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7081/5000000 + - api-usage=74/5000000 Last-Modified: - - Tue, 01 Aug 2023 18:58:20 GMT + - Thu, 09 Nov 2023 19:19:15 GMT Content-Type: - application/json;charset=UTF-8 Vary: @@ -9088,13 +9414,13 @@ http_interactions: - chunked body: encoding: ASCII-8BIT - string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8017e000000nQ6JAAU"},"Id":"8017e000000nQ6JAAU","OwnerId":"0057e00000VZBcyAAH","ContractId":null,"AccountId":"0017e00001iZwRxAAK","Pricebook2Id":"01s7e000002eLFEAA2","OriginalOrderId":null,"OpportunityId":"0067e00000NeuoEAAR","EffectiveDate":"2023-08-01","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-01T18:58:00.000+0000","ActivatedById":"0057e00000VZBcyAAH","StatusCode":"Activated","OrderNumber":"00000969","TotalAmount":2880.0,"CreatedDate":"2023-08-01T18:57:59.000+0000","CreatedById":"0057e00000VZBcyAAH","LastModifiedDate":"2023-08-01T18:58:20.000+0000","LastModifiedById":"0057e00000VZBcyAAH","IsDeleted":false,"SystemModstamp":"2023-08-01T18:58:20.000+0000","LastViewedDate":"2023-08-01T18:58:20.000+0000","LastReferencedDate":"2023-08-01T18:58:20.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + string: '{"attributes":{"type":"Order","url":"/services/data/v58.0/sobjects/Order/8016s000001FXxkAAG"},"Id":"8016s000001FXxkAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeFAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE1EAAV","EffectiveDate":"2023-11-09","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-11-09T19:19:05.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000266","TotalAmount":2880.0,"CreatedDate":"2023-11-09T19:19:04.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:19:15.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:19:15.000+0000","LastViewedDate":"2023-11-09T19:19:15.000+0000","LastReferencedDate":"2023-11-09T19:19:15.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":"a0z7e00000BDJloAAH","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1NaNlvIsgf92XbAOv6qjrpDk","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1NaNlvIsgf92XbAOv6qjrpDk"}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + Needed","SBQQ__Quote__c":"a0z6s0000016DsGAAU","SBQQ__RenewalTerm__c":null,"SBQQ__RenewalUpliftRate__c":null,"SBQQ__TaxAmount__c":0.0,"SBQQ__OrderBookings__c":2880.0,"Skip_Past_Initial_Invoices__c":false,"Stripe_ID__c":"sub_sched_1OAdl1Isgf92XbAOa9GCfYUi","Stripe_Invoice_Payment_Link__c":null,"Stripe_Revenue_Contract_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/sub_sched_1OAdl1Isgf92XbAOa9GCfYUi"}' + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1NaNlvIsgf92XbAOv6qjrpDk + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdl1Isgf92XbAOa9GCfYUi body: encoding: US-ASCII string: '' @@ -9106,13 +9432,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_BHsAyRnDVivCoo","request_duration_ms":202}}' + - '{"last_request_metrics":{"request_id":"req_gOIYs3cbzRfJAA","request_duration_ms":238}}' 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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9127,31 +9453,39 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:21 GMT + - Thu, 09 Nov 2023 19:19:16 GMT Content-Type: - application/json Content-Length: - - '3148' + - '3128' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' Request-Id: - - req_VX8XZzfnZICxCH + - req_nehS54W3LVaGFk Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9160,17 +9494,17 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "sub_sched_1NaNlvIsgf92XbAOv6qjrpDk", + "id": "sub_sched_1OAdl1Isgf92XbAOa9GCfYUi", "object": "subscription_schedule", "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", "canceled_at": null, "completed_at": null, - "created": 1690916299, + "created": 1699557555, "current_phase": { - "end_date": 1722470400, - "start_date": 1690848000 + "end_date": 1731110400, + "start_date": 1699488000 }, - "customer": "cus_ON81SQgGHG4Fa5", + "customer": "cus_OyawwiTgkTJqRU", "default_settings": { "application_fee_percent": null, "automatic_tax": { @@ -9189,8 +9523,8 @@ http_interactions: "end_behavior": "cancel", "livemode": false, "metadata": { - "salesforce_order_id": "8017e000000nQ6JAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6JAAU" + "salesforce_order_id": "8016s000001FXxkAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxkAAG" }, "phases": [ { @@ -9205,23 +9539,23 @@ http_interactions: "default_tax_rates": [], "description": null, "discounts": [], - "end_date": 1722470400, + "end_date": 1731110400, "invoice_settings": null, "items": [ { "billing_thresholds": null, "discounts": [ { - "coupon": "MynHSGGW", + "coupon": "F1iFGVtu", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPhzAAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPhzAAE" + "salesforce_order_item_id": "8026s0000014Mv9AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mv9AAE" }, - "plan": "price_1NaNlkIsgf92XbAOcSsX7SHW", - "price": "price_1NaNlkIsgf92XbAOcSsX7SHW", + "plan": "price_1OAdkwIsgf92XbAO4nlTz9oy", + "price": "price_1OAdkwIsgf92XbAO4nlTz9oy", "quantity": 1, "tax_rates": [] }, @@ -9229,27 +9563,27 @@ http_interactions: "billing_thresholds": null, "discounts": [ { - "coupon": "MynHSGGW", + "coupon": "F1iFGVtu", "discount": null } ], "metadata": { - "salesforce_order_item_id": "8027e000001bPi0AAE", - "salesforce_order_item_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8027e000001bPi0AAE" + "salesforce_order_item_id": "8026s0000014MvAAAU", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014MvAAAU" }, - "plan": "price_1NaNlrIsgf92XbAOGii4qtJS", - "price": "price_1NaNlrIsgf92XbAOGii4qtJS", + "plan": "price_1OAdkzIsgf92XbAOa0RcOa1P", + "price": "price_1OAdkzIsgf92XbAOa0RcOa1P", "quantity": 1, "tax_rates": [] } ], "metadata": { - "salesforce_order_id": "8017e000000nQ6JAAU", - "salesforce_order_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/8017e000000nQ6JAAU" + "salesforce_order_id": "8016s000001FXxkAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxkAAG" }, "on_behalf_of": null, "proration_behavior": "create_prorations", - "start_date": 1690848000, + "start_date": 1699488000, "transfer_data": null, "trial_end": null } @@ -9259,13 +9593,13 @@ http_interactions: "released_subscription": null, "renewal_interval": null, "status": "active", - "subscription": "sub_1NaNlvIsgf92XbAOM0ssEiHy", + "subscription": "sub_1OAdl1Isgf92XbAOQxinykoz", "test_clock": null } - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT - request: method: get - uri: https://api.stripe.com/v1/coupons/MynHSGGW + uri: https://api.stripe.com/v1/coupons/F1iFGVtu body: encoding: US-ASCII string: '' @@ -9277,13 +9611,13 @@ http_interactions: Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_VX8XZzfnZICxCH","request_duration_ms":210}}' + - '{"last_request_metrics":{"request_id":"req_nehS54W3LVaGFk","request_duration_ms":205}}' Stripe-Version: - '2020-08-27' X-Stripe-Client-User-Agent: - - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-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 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' Stripe-Account: - STRIPE_MERCHANT_ID Accept-Encoding: @@ -9298,31 +9632,38 @@ http_interactions: Server: - nginx Date: - - Tue, 01 Aug 2023 18:58:21 GMT + - Thu, 09 Nov 2023 19:19:16 GMT Content-Type: - application/json Content-Length: - - '733' + - '723' 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: - - Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons%2F%3Acoupon; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_QElvH1NmbzR3qK + - req_isEOr8gRow1pSB Stripe-Account: - acct_15uapDIsgf92XbAO Stripe-Version: - '2020-08-27' + Vary: + - Origin X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -9331,20 +9672,20 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "MynHSGGW", + "id": "F1iFGVtu", "object": "coupon", "amount_off": 5500, - "created": 1690916290, + "created": 1699557550, "currency": "usd", "duration": "forever", "duration_in_months": null, "livemode": false, "max_redemptions": null, "metadata": { - "salesforce_order_stripe_coupon_id": "a1N7e000002flPQEAY", - "salesforce_order_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1N7e000002flPQEAY", - "salesforce_quote_stripe_coupon_id": "a1R7e000007JEs7EAG", - "salesforce_quote_stripe_coupon_link": "https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/a1R7e000007JEs7EAG" + "salesforce_order_stripe_coupon_id": "a1N6s00000113hhEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hhEAA", + "salesforce_quote_stripe_coupon_id": "a1R6s000000uvHUEAY", + "salesforce_quote_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1R6s000000uvHUEAY" }, "name": "$55 off coupon", "percent_off": null, @@ -9352,58 +9693,5 @@ http_interactions: "times_redeemed": 2, "valid": true } - recorded_at: Tue, 01 Aug 2023 18:57:33 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/8017e000000nQ6JAAU-8017e000000nQ6JAAU - body: - encoding: UTF-8 - string: '{"Primary_Record_ID__c":"8017e000000nQ6JAAU","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8017e000000nQ6JAAU","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created - Stripe Subscription Schedule with Id: sub_sched_1NaNlvIsgf92XbAOv6qjrpDk","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_bKiVCv57zPOdIK"}' - 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: - - Wed, 11 Oct 2023 16:39:00 GMT - Set-Cookie: - - BrowserId=rlBlUWhUEe6ibs23x-jZ3w; domain=.salesforce.com; path=/; expires=Thu, - 10-Oct-2024 16:39:00 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:39:00 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Oct-2024 16:39: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=119/5000000 - Location: - - "/services/data/v58.0/sobjects/Sync_Record__c/a1W8N000000OCriUAG" - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - body: - encoding: UTF-8 - string: '{"id":"a1W8N000000OCriUAG","success":true,"errors":[],"created":true}' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/integration/translate/test_coupon/validation_error_thrown_if_SF_Stripe_coupon_is_created_with_both_Amount_Off__c_and_Percent_Off__c_set.yml b/test/vcr_cassettes/integration/translate/test_coupon/validation_error_thrown_if_SF_Stripe_coupon_is_created_with_both_Amount_Off__c_and_Percent_Off__c_set.yml index b57d742589..5d7b585d4a 100644 --- a/test/vcr_cassettes/integration/translate/test_coupon/validation_error_thrown_if_SF_Stripe_coupon_is_created_with_both_Amount_Off__c_and_Percent_Off__c_set.yml +++ b/test/vcr_cassettes/integration/translate/test_coupon/validation_error_thrown_if_SF_Stripe_coupon_is_created_with_both_Amount_Off__c_and_Percent_Off__c_set.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: post - uri: https://ability-innovation-7335-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c body: encoding: UTF-8 string: '{"Name__c":"Invalid coupon","Amount_Off__c":10,"Duration__c":"once","Percent_Off__c":25}' @@ -23,12 +23,12 @@ http_interactions: message: Bad Request headers: Date: - - Tue, 01 Aug 2023 18:59:25 GMT + - Thu, 09 Nov 2023 19:19:52 GMT Set-Cookie: - - BrowserId=iLnxiDCdEe6BD7nYZTiwdQ; domain=.salesforce.com; path=/; expires=Wed, - 31-Jul-2024 18:59:25 GMT; Max-Age=31536000 - - CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:25 GMT; Max-Age=31536000 - - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Wed, 31-Jul-2024 18:59:25 + - BrowserId=9VeajH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:19:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:19:52 GMT; Max-Age=31536000 Strict-Transport-Security: - max-age=63072000; includeSubDomains @@ -41,7 +41,7 @@ http_interactions: Cache-Control: - no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: - - api-usage=7109/5000000 + - api-usage=120/5000000 Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: @@ -50,5 +50,5 @@ http_interactions: encoding: UTF-8 string: '[{"message":"Received both Percent_Off__c and Amount_Off__c parameters. Please pass in only one.","errorCode":"FIELD_CUSTOM_VALIDATION_EXCEPTION","fields":[]}]' - recorded_at: Tue, 01 Aug 2023 18:57:33 GMT + recorded_at: Thu, 09 Nov 2023 19:18:45 GMT recorded_with: VCR 6.2.0 diff --git a/test/vcr_cassettes/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.yml b/test/vcr_cassettes/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.yml new file mode 100644 index 0000000000..31df11ce4c --- /dev/null +++ b/test/vcr_cassettes/order_and_order_line_coupons_are_created_when_an_sf_quote_is_ordered.yml @@ -0,0 +1,8404 @@ +--- +http_interactions: +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account + body: + encoding: UTF-8 + string: '{"Name":"REST Account 2023-11-09 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: + - Thu, 09 Nov 2023 19:17:02 GMT + Set-Cookie: + - BrowserId=j715Hn80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:02 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:02 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=11/5000000 + Location: + - "/services/data/v58.0/sobjects/Account/0016s00000fzBeYAAU" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0016s00000fzBeYAAU","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:03 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2 + body: + encoding: UTF-8 + string: '{"Name":"REST Product2 2023-11-09 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: + - Thu, 09 Nov 2023 19:17:03 GMT + Set-Cookie: + - BrowserId=kIQj7H80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:03 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:03 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=10/5000000 + Location: + - "/services/data/v58.0/sobjects/Product2/01t6s000004g3qFAAQ" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01t6s000004g3qFAAQ","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:09 GMT +- request: + method: get + uri: https://connect-saas-89822-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: + - Thu, 09 Nov 2023 19:17:09 GMT + Set-Cookie: + - BrowserId=lAOGfX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=10/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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:09 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry + body: + encoding: UTF-8 + string: '{"Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qFAAQ","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: + - Thu, 09 Nov 2023 19:17:09 GMT + Set-Cookie: + - BrowserId=lBstjH80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=10/5000000 + Location: + - "/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyQmAAK" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"01u6s000006MyQmAAK","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:09 GMT +- request: + method: get + uri: https://connect-saas-89822-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: + - Thu, 09 Nov 2023 19:17:09 GMT + Set-Cookie: + - BrowserId=lEC3HX80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=11/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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:09 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Opportunity + body: + encoding: UTF-8 + string: '{"Name":"REST Opportunity 2023-11-09 00:00:00 UTC","CloseDate":"2023-11-09","StageName":"Closed/Won","AccountId":"0016s00000fzBeYAAU"}' + 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: + - Thu, 09 Nov 2023 19:17:09 GMT + Set-Cookie: + - BrowserId=lFtDun80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:09 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=10/5000000 + Location: + - "/services/data/v58.0/sobjects/Opportunity/0066s00000CfE19AAF" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0066s00000CfE19AAF","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:10 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Contact + body: + encoding: UTF-8 + string: '{"LastName":"Bianco","Email":"order_and_order_line_when_quote_ordered@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: + - Thu, 09 Nov 2023 19:17:10 GMT + Set-Cookie: + - BrowserId=lJk3ZH80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=12/5000000 + Location: + - "/services/data/v58.0/sobjects/Contact/0036s00000WY98gAAD" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"0036s00000WY98gAAD","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:10 GMT +- request: + method: post + uri: https://connect-saas-89822-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":"0066s00000CfE19AAF","SBQQ__PrimaryContact__c":"0036s00000WY98gAAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__StartDate__c":"2023-11-09","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: + - Thu, 09 Nov 2023 19:17:10 GMT + Set-Cookie: + - BrowserId=lNPPcn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:10 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:10 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=13/5000000 + Location: + - "/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a0z6s0000016DllAAE","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:11 GMT +- request: + method: get + uri: https://connect-saas-89822-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: + - Thu, 09 Nov 2023 19:17:11 GMT + Set-Cookie: + - BrowserId=lZSuhn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:11 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:11 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=14/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/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:11 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=a0z6s0000016DllAAE + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:12 GMT + Set-Cookie: + - BrowserId=laBtwX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:12 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:12 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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 + 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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"Id\":\"a0z6s0000016DllAAE\",\"Name\":\"Q-00194\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE19AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"Id\":\"0016s00000fzBeYAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"Id\":\"0066s00000CfE19AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.00,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:17:16 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=01t6s000004g3qFAAQ + body: + encoding: UTF-8 + string: '{"context":"{\"pricebookId\":\"01s6s000002xdpsAAA\"}"}' + 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: + - Thu, 09 Nov 2023 19:17:16 GMT + Set-Cookie: + - BrowserId=mIy4Hn80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:16 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:16 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:16 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"Id\":\"01t6s000004g3qFAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/v59.0/sobjects/PricebookEntry/01u6s000006MyQmAAK\"},\"Product2Id\":\"01t6s000004g3qFAAQ\",\"Id\":\"01u6s000006MyQmAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"UnitPrice\":120.00,\"IsActive\":true}]}},\"options\":[],\"features\":[],\"featureCategoryLabels\":{\"Software\":\"Software\",\"Hardware\":\"Hardware\"},\"featureCategories\":[],\"currencySymbol\":\"$\",\"constraints\":[],\"configurationAttributes\":[]}"' + recorded_at: Thu, 09 Nov 2023 19:17:21 GMT +- request: + method: patch + uri: https://connect-saas-89822-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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"Id\":\"a0z6s0000016DllAAE\",\"Name\":\"Q-00194\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE19AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"Id\":\"0016s00000fzBeYAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"Id\":\"0066s00000CfE19AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\"},\"SBQQ__CustomerDiscount__c\":null,\"SBQQ__MarkupRate__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__EndDate__c\":null,\"SBQQ__MasterContract__c\":null,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__QuoteProcessId__c\":null,\"SBQQ__DistributorDiscount__c\":null,\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__GenerateContractedPrice__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__RenewalTerm__c\":null,\"SBQQ__RenewalUpliftRate__c\":null,\"SBQQ__OrderGroupID__c\":null,\"SBQQ__TargetCustomerAmount__c\":null,\"SBQQ__OrderBy__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null},\"nextKey\":1,\"netTotal\":0.0,\"lineItems\":[],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":0.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false},\"products\":[{\"record\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"Id\":\"01t6s000004g3qFAAQ\",\"Name\":\"REST + Product2 2023-11-09 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/v59.0/sobjects/PricebookEntry/01u6s000006MyQmAAK\"},\"Product2Id\":\"01t6s000004g3qFAAQ\",\"Id\":\"01u6s000006MyQmAAK\",\"Pricebook2Id\":\"01s6s000002xdpsAAA\",\"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: + - Thu, 09 Nov 2023 19:17:21 GMT + Set-Cookie: + - BrowserId=myO2qH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:21 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:21 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:21 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '"{\"ui_original_record\":{\"cloneRecordIfNoCache\":true,\"cacheName\":\"LineEditor\",\"cacheId\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"Id\":\"a0z6s0000016DllAAE\",\"Name\":\"Q-00194\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.00,\"SBQQ__CustomerAmount__c\":0.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE19AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"Id\":\"0016s00000fzBeYAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"Id\":\"0066s00000CfE19AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\"},\"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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DllAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qFAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQmAAK\",\"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-0001666\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"Id\":\"01t6s000004g3qFAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:17:28 GMT +- request: + method: patch + uri: https://connect-saas-89822-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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"Id\":\"a0z6s0000016DllAAE\",\"Name\":\"Q-00194\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":0.0,\"SBQQ__CustomerAmount__c\":0.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE19AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"Id\":\"0016s00000fzBeYAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"Id\":\"0066s00000CfE19AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\"},\"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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DllAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qFAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQmAAK\",\"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-0001666\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"Id\":\"01t6s000004g3qFAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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: + - Thu, 09 Nov 2023 19:17:28 GMT + Set-Cookie: + - BrowserId=n5jrk380Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:28 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:28 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"Id\":\"a0z6s0000016DllAAE\",\"Name\":\"Q-00194\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.00,\"SBQQ__CustomerAmount__c\":1440.00,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE19AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"Id\":\"0016s00000fzBeYAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"Id\":\"0066s00000CfE19AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\"},\"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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DllAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qFAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQmAAK\",\"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-0001667\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"Id\":\"01t6s000004g3qFAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.00,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:17:33 GMT +- request: + method: post + uri: https://connect-saas-89822-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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"Id\":\"a0z6s0000016DllAAE\",\"Name\":\"Q-00194\",\"SBQQ__Type__c\":\"Quote\",\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__SubscriptionTerm__c\":12,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__NetAmount__c\":1440.0,\"SBQQ__CustomerAmount__c\":1440.0,\"SBQQ__PricebookId__c\":\"01s6s000002xdpsAAA\",\"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\":\"0066s00000CfE19AAF\",\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"Id\":\"0016s00000fzBeYAAU\",\"Name\":\"REST + Account 2023-11-09 00:00:00 UTC\",\"SBQQ__RenewalModel__c\":\"Contract Based\",\"SBQQ__RenewalPricingMethod__c\":\"Same\"},\"SBQQ__Opportunity2__r\":{\"attributes\":{\"type\":\"Opportunity\",\"url\":\"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"Id\":\"0066s00000CfE19AAF\",\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\"},\"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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\"},\"Id\":null,\"SBQQ__Quote__c\":\"a0z6s0000016DllAAE\",\"SBQQ__Description__c\":\"A + great description\",\"SBQQ__Product__c\":\"01t6s000004g3qFAAQ\",\"SBQQ__Number__c\":1,\"SBQQ__PricebookEntryId__c\":\"01u6s000006MyQmAAK\",\"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-0001667\",\"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-11-09 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/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"Id\":\"01t6s000004g3qFAAQ\",\"SBQQ__HasConfigurationAttributes__c\":false,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"Name\":\"REST + Product2 2023-11-09 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-11-09\",\"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: + - Thu, 09 Nov 2023 19:17:33 GMT + Set-Cookie: + - BrowserId=opDOgn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:33 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:33 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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 + 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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"ui_original_record\"]},\"record\":{\"attributes\":{\"type\":\"SBQQ__Quote__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE\"},\"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/v59.0/sobjects/Opportunity/0066s00000CfE19AAF\"},\"SBQQ__PrimaryQuote__c\":\"a0z6s0000016DllAAE\",\"AccountId\":\"0016s00000fzBeYAAU\",\"Id\":\"0066s00000CfE19AAF\"},\"SBQQ__Account__r\":{\"attributes\":{\"type\":\"Account\",\"url\":\"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU\"},\"SBQQ__RenewalPricingMethod__c\":\"Same\",\"Id\":\"0016s00000fzBeYAAU\",\"SBQQ__RenewalModel__c\":\"Contract + Based\",\"Name\":\"REST Account 2023-11-09 00:00:00 UTC\"},\"SBQQ__ContractingMethod__c\":\"By + Subscription End Date\",\"SBQQ__RenewalUpliftRate__c\":null,\"Name\":\"Q-00194\",\"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\":\"01s6s000002xdpsAAA\",\"SBQQ__EndDate__c\":null,\"SBQQ__Account__c\":\"0016s00000fzBeYAAU\",\"SBQQ__WatermarkShown__c\":false,\"SBQQ__StartDate__c\":\"2023-11-09\",\"SBQQ__FirstSegmentTermEndDate__c\":null,\"SBQQ__BillingFrequency__c\":null,\"SBQQ__Status__c\":\"Draft\",\"SBQQ__LineItemsGrouped__c\":false,\"SBQQ__ExpirationDate__c\":\"2023-12-09\",\"SBQQ__Primary__c\":true,\"SBQQ__MasterEvergreenContract__c\":null,\"SBQQ__ProrationDayOfMonth__c\":null,\"SBQQ__Opportunity2__c\":\"0066s00000CfE19AAF\",\"SBQQ__LineItemCount__c\":1.0,\"SBQQ__MasterContract__c\":null,\"Id\":\"a0z6s0000016DllAAE\",\"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\":\"a0z6s0000016DllAAE\",\"cachedOriginalRecordPath\":[\"quote\",\"lineItems\",\"0\",\"ui_original_record\"]},\"subscriptionTerm\":12,\"record\":{\"attributes\":{\"type\":\"SBQQ__QuoteLine__c\",\"url\":\"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlboAAA\"},\"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-11-09 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\":\"a0z6s0000016DllAAE\",\"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\":\"a0v6s000000tlboAAA\",\"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-0001667\",\"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\":\"01u6s000006MyQmAAK\",\"SBQQ__ProductOption__c\":null,\"SBQQ__OptionDiscountAmount__c\":null,\"SBQQ__TermDiscount__c\":null,\"SBQQ__MarkupAmount__c\":null,\"SBQQ__PartnerDiscount__c\":null,\"SBQQ__ComponentDiscountedByPackage__c\":false,\"SBQQ__Renewal__c\":false,\"SBQQ__CompoundDiscountRate__c\":null,\"SBQQ__UpgradedQuantity__c\":null,\"SBQQ__AdditionalDiscountAmount__c\":null,\"SBQQ__Cost__c\":null,\"SBQQ__PackageProductDescription__c\":null,\"SBQQ__PartnerPrice__c\":1440.0,\"SBQQ__DiscountSchedule__c\":null,\"SBQQ__ComponentCost__c\":null,\"SBQQ__SubscribedAssetIds__c\":null,\"SBQQ__SubscriptionScope__c\":\"Quote\",\"SBQQ__Product__r\":{\"attributes\":{\"type\":\"Product2\",\"url\":\"/services/data/v59.0/sobjects/Product2/01t6s000004g3qFAAQ\"},\"SBQQ__SubscriptionTerm__c\":1.0,\"ProductCode\":\"EfxBsBKAsjaF0caCUQPWQYJ8h61G\",\"SBQQ__HasConfigurationAttributes__c\":false,\"SBQQ__PricingMethod__c\":\"List\",\"Id\":\"01t6s000004g3qFAAQ\",\"Name\":\"REST + Product2 2023-11-09 00:00:00 UTC\"},\"SBQQ__SubscriptionBase__c\":\"List\",\"SBQQ__BillingFrequency__c\":\"Monthly\",\"SBQQ__OriginalUnitCost__c\":null,\"SBQQ__Bundle__c\":false,\"SBQQ__Product__c\":\"01t6s000004g3qFAAQ\",\"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-11-09\",\"descriptionLocked\":false}],\"lineItemGroups\":[],\"isPartial\":false,\"hasMultiSegmentLines\":false,\"customerTotal\":1440.0,\"channelDiscountsOffList\":false,\"calculationRequired\":false,\"applyPartnerDiscountFirst\":false,\"applyAdditionalDiscountLast\":false}"' + recorded_at: Thu, 09 Nov 2023 19:17:34 GMT +- request: + method: get + uri: https://connect-saas-89822-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: + - Thu, 09 Nov 2023 19:17:34 GMT + Set-Cookie: + - BrowserId=ouDDQ380Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=12/5000000 + Etag: + - '"80b46bc9--gzip"' + Last-Modified: + - Mon, 30 Oct 2023 17:32:26 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Thu, 09 Nov 2023 19:17:34 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:34 GMT + Set-Cookie: + - BrowserId=ozVL6n80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=13/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:34 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/a0z6s0000016DllAAE"},"Id":"a0z6s0000016DllAAE","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"Q-00194","CreatedDate":"2023-11-09T19:17:11.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:34.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:34.000+0000","LastActivityDate":null,"LastViewedDate":"2023-11-09T19:17:34.000+0000","LastReferencedDate":"2023-11-09T19:17:34.000+0000","SBQQ__Account__c":"0016s00000fzBeYAAU","SBQQ__BillingCity__c":null,"SBQQ__BillingCountry__c":null,"SBQQ__BillingFrequency__c":null,"SBQQ__BillingName__c":"REST + Account 2023-11-09 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-11-09T19:17:34.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":"0066s00000CfE19AAF","SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__OrderBy__c":null,"SBQQ__OrderGroupID__c":null,"SBQQ__Ordered__c":false,"SBQQ__OriginalQuote__c":null,"SBQQ__PaperSize__c":"Default","SBQQ__PartnerDiscount__c":null,"SBQQ__Partner__c":null,"SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PrimaryContact__c":"0036s00000WY98gAAD","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":"0056s000006SKknAAG","SBQQ__ShippingCity__c":null,"SBQQ__ShippingCountry__c":null,"SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__ShippingPostalCode__c":null,"SBQQ__ShippingState__c":null,"SBQQ__ShippingStreet__c":null,"SBQQ__Source__c":null,"SBQQ__StartDate__c":"2023-11-09","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-12-09","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: Thu, 09 Nov 2023 19:17:34 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20SBQQ__QuoteLine__c%20WHERE%20SBQQ__Quote__c%20=%20%27a0z6s0000016DllAAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:34 GMT + Set-Cookie: + - BrowserId=o02PkH80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:34 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:34 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=14/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":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlboAAA"},"Id":"a0v6s000000tlboAAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:34 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlboAAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:35 GMT + Set-Cookie: + - BrowserId=o11GUH80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=14/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:34 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlboAAA"},"Id":"a0v6s000000tlboAAA","IsDeleted":false,"Name":"QL-0001668","CreatedDate":"2023-11-09T19:17:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:34.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:34.000+0000","SBQQ__Quote__c":"a0z6s0000016DllAAE","SBQQ__AdditionalDiscountAmount__c":null,"SBQQ__AdditionalQuantity__c":null,"SBQQ__AllowAssetRefund__c":false,"SBQQ__BatchQuantity__c":null,"SBQQ__BillingFrequency__c":"Monthly","SBQQ__BillingType__c":null,"SBQQ__BlockPrice__c":null,"SBQQ__Bundle__c":false,"SBQQ__BundledQuantity__c":null,"SBQQ__Bundled__c":false,"SBQQ__CarryoverLine__c":false,"SBQQ__ChargeType__c":null,"SBQQ__ComponentCost__c":null,"SBQQ__ComponentDiscountedByPackage__c":false,"SBQQ__ComponentListTotal__c":null,"SBQQ__ComponentSubscriptionScope__c":null,"SBQQ__ComponentTotal__c":null,"SBQQ__ComponentUpliftedByPackage__c":false,"SBQQ__CompoundDiscountRate__c":null,"SBQQ__ConfigurationRequired__c":false,"SBQQ__ContractedPrice__c":null,"SBQQ__CostEditable__c":false,"SBQQ__Cost__c":null,"SBQQ__CustomerPrice__c":1440.0,"SBQQ__DefaultSubscriptionTerm__c":1.0,"SBQQ__Description__c":"A + great description","SBQQ__Dimension__c":null,"SBQQ__DiscountScheduleType__c":null,"SBQQ__DiscountSchedule__c":null,"SBQQ__DiscountTier__c":null,"SBQQ__Discount__c":null,"SBQQ__DistributorDiscount__c":null,"SBQQ__DynamicOptionId__c":null,"SBQQ__EarliestValidAmendmentStartDate__c":null,"SBQQ__EndDate__c":null,"SBQQ__Existing__c":false,"SBQQ__Favorite__c":null,"SBQQ__GenerateContractedPrice__c":null,"SBQQ__GrossProfit__c":null,"SBQQ__Group__c":null,"SBQQ__Guidance__c":null,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__Incomplete__c":false,"SBQQ__ListPrice__c":120.0,"SBQQ__MarkupAmount__c":null,"SBQQ__MarkupRate__c":null,"SBQQ__MaximumPrice__c":null,"SBQQ__MinimumPrice__c":null,"SBQQ__NetPrice__c":1440.0,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__Number__c":1.0,"SBQQ__OptionDiscountAmount__c":null,"SBQQ__OptionDiscount__c":null,"SBQQ__OptionLevel__c":null,"SBQQ__OptionType__c":null,"SBQQ__Optional__c":false,"SBQQ__OriginalPrice__c":120.0,"SBQQ__OriginalQuoteLineId__c":null,"SBQQ__OriginalUnitCost__c":null,"SBQQ__PackageProductCode__c":null,"SBQQ__PackageProductDescription__c":null,"SBQQ__PartnerDiscount__c":null,"SBQQ__PartnerPrice__c":1440.0,"SBQQ__PreviousSegmentPrice__c":null,"SBQQ__PreviousSegmentUplift__c":null,"SBQQ__PriceEditable__c":false,"SBQQ__PricebookEntryId__c":"01u6s000006MyQmAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__PriorQuantity__c":null,"SBQQ__ProductOption__c":null,"SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qFAAQ","SBQQ__ProrateMultiplier__c":12.0,"SBQQ__ProratedListPrice__c":1440.0,"SBQQ__ProratedPrice__c":1440.0,"SBQQ__Quantity__c":1.0,"SBQQ__RegularPrice__c":1440.0,"SBQQ__Renewal__c":false,"SBQQ__RenewedAsset__c":null,"SBQQ__RenewedSubscription__c":null,"SBQQ__RequiredBy__c":null,"SBQQ__SegmentIndex__c":null,"SBQQ__SegmentKey__c":null,"SBQQ__SegmentLabel__c":null,"SBQQ__Source__c":null,"SBQQ__SpecialPriceDescription__c":null,"SBQQ__SpecialPriceType__c":null,"SBQQ__SpecialPrice__c":120.0,"SBQQ__StartDate__c":null,"SBQQ__SubscribedAssetIds__c":null,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionCategory__c":null,"SBQQ__SubscriptionPercent__c":null,"SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionScope__c":"Quote","SBQQ__SubscriptionTargetPrice__c":null,"SBQQ__SubscriptionTerm__c":null,"SBQQ__TaxCode__c":null,"SBQQ__Taxable__c":false,"SBQQ__TermDiscountSchedule__c":null,"SBQQ__TermDiscountTier__c":null,"SBQQ__TermDiscount__c":null,"SBQQ__UnitCost__c":null,"SBQQ__UnproratedNetPrice__c":null,"SBQQ__UpgradedAsset__c":null,"SBQQ__UpgradedQuantity__c":null,"SBQQ__UpgradedSubscription__c":null,"SBQQ__UpliftAmount__c":0.0,"SBQQ__Uplift__c":0.0,"SBQQ__VolumeDiscount__c":null,"SBQQ__AdditionalDiscount__c":0.0,"SBQQ__ComponentVisibility__c":null,"SBQQ__CustomerTotal__c":1440.0,"SBQQ__EffectiveEndDate__c":null,"SBQQ__EffectiveQuantity__c":1.0,"SBQQ__EffectiveStartDate__c":"2023-11-09","SBQQ__EffectiveSubscriptionTerm__c":12.0,"SBQQ__ListTotal__c":1440.0,"SBQQ__Markup__c":0.0,"SBQQ__NetTotal__c":1440.0,"SBQQ__PackageCost__c":0.0,"SBQQ__PackageListTotal__c":1440.0,"SBQQ__PackageTotal__c":1440.0,"SBQQ__PartnerTotal__c":1440.0,"SBQQ__ProductCode__c":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","SBQQ__ProductFamily__c":null,"SBQQ__ProductName__c":"REST + Product2 2023-11-09 00:00:00 UTC","SBQQ__RegularTotal__c":1440.0,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__TotalDiscountAmount__c":0.0,"SBQQ__TotalDiscountRate__c":0.0}' + recorded_at: Thu, 09 Nov 2023 19:17:35 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + body: + encoding: UTF-8 + string: '{"Name__c":"Twenty-five percent off coupon","Amount_Off__c":null,"Duration__c":"once","Percent_Off__c":25}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 09 Nov 2023 19:17:35 GMT + Set-Cookie: + - BrowserId=o5Gcg380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=13/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHKEAY" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1R6s000000uvHKEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:35 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c + body: + encoding: UTF-8 + string: '{"Name__c":"$10 off coupon","Amount_Off__c":10,"Duration__c":"once"}' + headers: + User-Agent: + - Faraday v2.4.0 + Content-Type: + - application/json + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 201 + message: Created + headers: + Date: + - Thu, 09 Nov 2023 19:17:35 GMT + Set-Cookie: + - BrowserId=o7oNDH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=12/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHPEAY" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1R6s000000uvHPEAY","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:35 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c + body: + encoding: UTF-8 + string: '{"Quote_Line__c":"a0v6s000000tlboAAA","Quote_Stripe_Coupon__c":"a1R6s000000uvHKEAY"}' + 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: + - Thu, 09 Nov 2023 19:17:35 GMT + Set-Cookie: + - BrowserId=o9GzcH80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:35 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=12/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk56EAC" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1P6s000001Bk56EAC","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:36 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c + body: + encoding: UTF-8 + string: '{"Quote__c":"a0z6s0000016DllAAE","Quote_Stripe_Coupon__c":"a1R6s000000uvHPEAY"}' + 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: + - Thu, 09 Nov 2023 19:17:36 GMT + Set-Cookie: + - BrowserId=pCaxTn80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=14/5000000 + Location: + - "/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKMtEAO" + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"id":"a1Q6s000001FKMtEAO","success":true,"errors":[]}' + recorded_at: Thu, 09 Nov 2023 19:17:36 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlboAAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:36 GMT + Set-Cookie: + - BrowserId=pHuugX80Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:36 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:36 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=14/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":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk56EAC"},"Id":"a1P6s000001Bk56EAC"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:36 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk56EAC + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:37 GMT + Set-Cookie: + - BrowserId=pIsXy380Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:37 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=15/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:36 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk56EAC"},"Id":"a1P6s000001Bk56EAC","IsDeleted":false,"Name":"0001","CreatedDate":"2023-11-09T19:17:36.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:36.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:36.000+0000","Quote_Stripe_Coupon__c":"a1R6s000000uvHKEAY","Quote_Line__c":"a0v6s000000tlboAAA"}' + recorded_at: Thu, 09 Nov 2023 19:17:37 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHKEAY + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:37 GMT + Set-Cookie: + - BrowserId=pKK-yn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:37 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=18/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:35 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHKEAY"},"Id":"a1R6s000000uvHKEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0002","CreatedDate":"2023-11-09T19:17:35.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:35.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:35.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + percent off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:17:37 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE + 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: + - Thu, 09 Nov 2023 19:17:37 GMT + Set-Cookie: + - BrowserId=pLRyB380Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:37 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:37 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=15/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:43 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v52.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE/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: + - Thu, 09 Nov 2023 19:17:43 GMT + Set-Cookie: + - BrowserId=qKDHd380Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:43 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:43 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:43 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=14/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/8016s000001FXxfAAG"},"Id":"8016s000001FXxfAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeYAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE19AAF","EffectiveDate":"2023-11-09","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":"00000265","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:17:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:43.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:17:43.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":"a0z6s0000016DllAAE","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: Thu, 09 Nov 2023 19:17:43 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxfAAG + 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: + - Thu, 09 Nov 2023 19:17:44 GMT + Set-Cookie: + - BrowserId=qLsGB380Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:44 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:44 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:44 + 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=12/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxfAAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:45 GMT + Set-Cookie: + - BrowserId=qXbcCH80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:45 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=15/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:45 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/8016s000001FXxfAAG"},"Id":"8016s000001FXxfAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeYAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE19AAF","EffectiveDate":"2023-11-09","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-11-09T19:17:44.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000265","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:17:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:45.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:17:45.000+0000","LastViewedDate":"2023-11-09T19:17:44.000+0000","LastReferencedDate":"2023-11-09T19:17:44.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":"a0z6s0000016DllAAE","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: Thu, 09 Nov 2023 19:17:45 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxfAAG + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:45 GMT + Set-Cookie: + - BrowserId=qYjden80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:45 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=13/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:45 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/8016s000001FXxfAAG"},"Id":"8016s000001FXxfAAG","OwnerId":"0056s000006SKknAAG","ContractId":null,"AccountId":"0016s00000fzBeYAAU","Pricebook2Id":"01s6s000002xdpsAAA","OriginalOrderId":null,"OpportunityId":"0066s00000CfE19AAF","EffectiveDate":"2023-11-09","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-11-09T19:17:44.000+0000","ActivatedById":"0056s000006SKknAAG","StatusCode":"Activated","OrderNumber":"00000265","TotalAmount":1440.0,"CreatedDate":"2023-11-09T19:17:38.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:45.000+0000","LastModifiedById":"0056s000006SKknAAG","IsDeleted":false,"SystemModstamp":"2023-11-09T19:17:45.000+0000","LastViewedDate":"2023-11-09T19:17:45.000+0000","LastReferencedDate":"2023-11-09T19:17:45.000+0000","SBQQ__Contracted__c":false,"SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__PaymentTerm__c":"Net 30","SBQQ__PriceCalcStatusMessage__c":null,"SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__Quote__c":"a0z6s0000016DllAAE","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: Thu, 09 Nov 2023 19:17:45 GMT +- request: + method: post + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/apexrest/batchApi + body: + encoding: UTF-8 + string: '{"order_ids":["8016s000001FXxfAAG"]}' + 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: + - Thu, 09 Nov 2023 19:17:45 GMT + Set-Cookie: + - BrowserId=qZdca380Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:45 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:45 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"records":[{"attributes":{"type":"Contact","url":"/services/data/v59.0/sobjects/Contact/0036s00000WY98gAAD"},"Id":"0036s00000WY98gAAD","IsDeleted":false,"LastName":"Bianco","Name":"Bianco","OtherAddress":null,"MailingAddress":null,"Email":"order_and_order_line_when_quote_ordered@example.com","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:17:10.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:10.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:10.000+0000","LastViewedDate":"2023-11-09T19:17:10.000+0000","LastReferencedDate":"2023-11-09T19:17:10.000+0000","IsEmailBounced":false,"PhotoUrl":"/services/images/photo/0036s00000WY98gAAD","CleanStatus":"Pending"},{"attributes":{"type":"Opportunity","url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF"},"Id":"0066s00000CfE19AAF","IsDeleted":false,"AccountId":"0016s00000fzBeYAAU","IsPrivate":false,"Name":"REST + Opportunity 2023-11-09 00:00:00 UTC","StageName":"Closed/Won","Probability":0,"CloseDate":"2023-11-09","IsClosed":false,"IsWon":false,"ForecastCategory":"Omitted","ForecastCategoryName":"Omitted","HasOpportunityLineItem":false,"OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:17:10.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:11.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:11.000+0000","FiscalQuarter":4,"FiscalYear":2023,"Fiscal":"2023 + 4","LastViewedDate":"2023-11-09T19:17:10.000+0000","LastReferencedDate":"2023-11-09T19:17:10.000+0000","HasOpenActivity":false,"HasOverdueTask":false,"SBQQ__Contracted__c":false,"SBQQ__CreateContractedPrices__c":false,"SBQQ__Ordered__c":false,"SBQQ__PrimaryQuote__c":"a0z6s0000016DllAAE","SBQQ__Renewal__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"Account","url":"/services/data/v59.0/sobjects/Account/0016s00000fzBeYAAU"},"Id":"0016s00000fzBeYAAU","IsDeleted":false,"Name":"REST + Account 2023-11-09 00:00:00 UTC","BillingAddress":null,"ShippingAddress":null,"PhotoUrl":"/services/images/photo/0016s00000fzBeYAAU","OwnerId":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:17:03.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:03.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:03.000+0000","LastViewedDate":"2023-11-09T19:17:03.000+0000","LastReferencedDate":"2023-11-09T19:17:03.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":["0016s00000fzBeYAAU"],"Opportunities":["0066s00000CfE19AAF"],"Contacts":["0036s00000WY98gAAD"],"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-12-09","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-11-09","SBQQ__ShippingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__SalesRep__c":"0056s000006SKknAAG","SBQQ__Primary__c":true,"SBQQ__PrimaryContact__c":"0036s00000WY98gAAD","SBQQ__PricebookId__c":"01s6s000002xdpsAAA","SBQQ__PriceBook__c":"01s6s000002xdpsAAA","SBQQ__PaymentTerms__c":"Net + 30","SBQQ__PaperSize__c":"Default","SBQQ__Ordered__c":true,"SBQQ__OrderByQuoteLineGroup__c":false,"SBQQ__Opportunity2__c":"0066s00000CfE19AAF","SBQQ__LineItemsPrinted__c":true,"SBQQ__LineItemsGrouped__c":false,"SBQQ__LastSavedOn__c":"2023-11-09T19:17:37.000+0000","SBQQ__ContractingMethod__c":"By + Subscription End Date","SBQQ__ConsumptionRateOverride__c":false,"SBQQ__BillingName__c":"REST + Account 2023-11-09 00:00:00 UTC","SBQQ__Account__c":"0016s00000fzBeYAAU","LastReferencedDate":"2023-11-09T19:17:37.000+0000","LastViewedDate":"2023-11-09T19:17:37.000+0000","SystemModstamp":"2023-11-09T19:17:37.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:37.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:17:11.000+0000","Name":"Q-00194","IsDeleted":false,"OwnerId":"0056s000006SKknAAG","Id":"a0z6s0000016DllAAE","attributes":{"url":"/services/data/v59.0/sobjects/SBQQ__Quote__c/a0z6s0000016DllAAE","type":"SBQQ__Quote__c"}},{"attributes":{"type":"Product2","url":"/services/data/v59.0/sobjects/Product2/01t6s000004g3qFAAQ"},"Id":"01t6s000004g3qFAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:17:09.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:09.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:09.000+0000","IsDeleted":false,"IsArchived":false,"SBQQ__AssetAmendmentBehavior__c":"Default","SBQQ__AssetConversion__c":"One + per quote line","SBQQ__BillingFrequency__c":"Monthly","SBQQ__BlockPricingField__c":"Quantity","SBQQ__Component__c":false,"SBQQ__CostEditable__c":false,"SBQQ__CustomConfigurationRequired__c":false,"SBQQ__DefaultQuantity__c":1.00000,"SBQQ__DescriptionLocked__c":false,"SBQQ__EnableLargeConfiguration__c":false,"SBQQ__ExcludeFromMaintenance__c":false,"SBQQ__ExcludeFromOpportunity__c":false,"SBQQ__ExternallyConfigurable__c":false,"SBQQ__HasConfigurationAttributes__c":false,"SBQQ__HasConsumptionSchedule__c":false,"SBQQ__Hidden__c":false,"SBQQ__HidePriceInSearchResults__c":false,"SBQQ__IncludeInMaintenance__c":false,"SBQQ__NewQuoteGroup__c":false,"SBQQ__NonDiscountable__c":false,"SBQQ__NonPartnerDiscountable__c":false,"SBQQ__OptionSelectionMethod__c":"Click","SBQQ__Optional__c":false,"SBQQ__PriceEditable__c":false,"SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__QuantityEditable__c":true,"SBQQ__ReconfigurationDisabled__c":false,"SBQQ__SubscriptionBase__c":"List","SBQQ__SubscriptionPricing__c":"Fixed + Price","SBQQ__SubscriptionTerm__c":1,"SBQQ__SubscriptionType__c":"Renewable","SBQQ__Taxable__c":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"PricebookEntry","url":"/services/data/v59.0/sobjects/PricebookEntry/01u6s000006MyQmAAK"},"Id":"01u6s000006MyQmAAK","Name":"REST + Product2 2023-11-09 00:00:00 UTC","Pricebook2Id":"01s6s000002xdpsAAA","Product2Id":"01t6s000004g3qFAAQ","UnitPrice":120.00,"IsActive":true,"UseStandardPrice":false,"CreatedDate":"2023-11-09T19:17:09.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:09.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:09.000+0000","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","IsDeleted":false,"IsArchived":false,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"},{"attributes":{"type":"SBQQ__QuoteLine__c","url":"/services/data/v59.0/sobjects/SBQQ__QuoteLine__c/a0v6s000000tlboAAA"},"Id":"a0v6s000000tlboAAA","IsDeleted":false,"Name":"QL-0001668","CreatedDate":"2023-11-09T19:17:34.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:34.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:34.000+0000","SBQQ__Quote__c":"a0z6s0000016DllAAE","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":"01u6s000006MyQmAAK","SBQQ__PricingMethodEditable__c":false,"SBQQ__PricingMethod__c":"List","SBQQ__ProductSubscriptionType__c":"Renewable","SBQQ__Product__c":"01t6s000004g3qFAAQ","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-11-09","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-11-09 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":["01t6s000004g3qFAAQ"],"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__QuotedQuantity__c":1.00,"SBQQ__QuotedListPrice__c":120.00,"SBQQ__QuoteLine__c":"a0v6s000000tlboAAA","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":"0000000493","SystemModstamp":"2023-11-09T19:17:44.000+0000","LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:44.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:17:38.000+0000","EndDate":"2024-11-08","ServiceDate":"2023-11-09","TotalPrice":1440.00,"ListPrice":120.00,"UnitPrice":1440.00,"Quantity":1.00,"AvailableQuantity":1.00,"PricebookEntryId":"01u6s000006MyQmAAK","OrderId":"8016s000001FXxfAAG","IsDeleted":false,"Product2Id":"01t6s000004g3qFAAQ","Id":"8026s0000014Mv4AAE","attributes":{"url":"/services/data/v59.0/sobjects/OrderItem/8026s0000014Mv4AAE","type":"OrderItem"}},{"attributes":{"type":"Pricebook2","url":"/services/data/v59.0/sobjects/Pricebook2/01s6s000002xdpsAAA"},"Id":"01s6s000002xdpsAAA","IsDeleted":false,"Name":"Standard + Price Book","CreatedDate":"2023-10-30T13:43:25.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-10-30T13:43:25.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-10-30T13:43:25.000+0000","IsActive":false,"IsArchived":false,"IsStandard":true},{"PriceBooks":["01s6s000002xdpsAAA"],"Opportunities":["0066s00000CfE19AAF"],"Accounts":["0016s00000fzBeYAAU"],"OrderItems":["8026s0000014Mv4AAE"],"Quotes":["a0z6s0000016DllAAE"],"Opportunity":{"Id":"0066s00000CfE19AAF","attributes":{"url":"/services/data/v59.0/sobjects/Opportunity/0066s00000CfE19AAF","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":"a0z6s0000016DllAAE","SBQQ__PriceCalcStatus__c":"Not + Needed","SBQQ__PaymentTerm__c":"Net 30","SBQQ__ContractingMethod__c":"By Subscription + End Date","SBQQ__Contracted__c":false,"LastReferencedDate":"2023-11-09T19:17:45.000+0000","LastViewedDate":"2023-11-09T19:17:45.000+0000","SystemModstamp":"2023-11-09T19:17:45.000+0000","IsDeleted":false,"LastModifiedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:45.000+0000","CreatedById":"0056s000006SKknAAG","CreatedDate":"2023-11-09T19:17:38.000+0000","TotalAmount":1440.00,"OrderNumber":"00000265","StatusCode":"Activated","ActivatedById":"0056s000006SKknAAG","ActivatedDate":"2023-11-09T19:17:44.000+0000","ShippingAddress":null,"BillingAddress":null,"Type":"New","Status":"Activated","IsReductionOrder":false,"EffectiveDate":"2023-11-09","OpportunityId":"0066s00000CfE19AAF","Pricebook2Id":"01s6s000002xdpsAAA","AccountId":"0016s00000fzBeYAAU","OwnerId":"0056s000006SKknAAG","Id":"8016s000001FXxfAAG","attributes":{"url":"/services/data/v59.0/sobjects/Order/8016s000001FXxfAAG","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: Thu, 09 Nov 2023 19:17:48 GMT +- request: + method: get + uri: https://connect-saas-89822-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%278016s000001FXxfAAG%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:48 GMT + Set-Cookie: + - BrowserId=qzGE0n80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=16/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/8016s000001FXxfAAG"},"Type":"New","OpportunityId":"0066s00000CfE19AAF","Opportunity":{"attributes":{"type":"Opportunity","url":"/services/data/v58.0/sobjects/Opportunity/0066s00000CfE19AAF"},"SBQQ__AmendedContract__c":null}}]}' + recorded_at: Thu, 09 Nov 2023 19:17:48 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order%20WHERE%20Id%20=%20%278016s000001FXxfAAG%27%20%20AND%20Status%20=%20%27Activated%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:48 GMT + Set-Cookie: + - BrowserId=q0i19H80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:48 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=13/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/8016s000001FXxfAAG"},"Id":"8016s000001FXxfAAG"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:48 GMT +- request: + method: post + uri: https://api.stripe.com/v1/customers + body: + encoding: UTF-8 + string: name=REST+Account++2023-11-09+00%3A00%3A00+UTC&metadata[salesforce_account_id]=0016s00000fzBeYAAU&metadata[salesforce_account_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F0016s00000fzBeYAAU + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - ccc4d6ff-388a-4ccf-8f92-878a91fbb21f + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:48 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, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - ccc4d6ff-388a-4ccf-8f92-878a91fbb21f + Original-Request: + - req_2flwJnfdFmm9zq + Request-Id: + - req_2flwJnfdFmm9zq + 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_OyavUWSqlfYiM4", + "object": "customer", + "address": null, + "balance": 0, + "created": 1699557468, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "C3543376", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0016s00000fzBeYAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBeYAAU" + }, + "name": "REST Account 2023-11-09 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Thu, 09 Nov 2023 19:17:48 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Account/0016s00000fzBeYAAU + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"cus_OyavUWSqlfYiM4"}' + 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: + - Thu, 09 Nov 2023 19:17:48 GMT + Set-Cookie: + - BrowserId=q5fnDH80Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:48 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:48 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:48 + 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=16/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:48 GMT +- request: + method: post + uri: https://api.stripe.com/v1/products + body: + encoding: UTF-8 + string: name=REST+Product2++2023-11-09+00%3A00%3A00+UTC&description=A+great+description&metadata[salesforce_product2_id]=01t6s000004g3qFAAQ&metadata[salesforce_product2_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01t6s000004g3qFAAQ + 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_2flwJnfdFmm9zq","request_duration_ms":391}}' + Idempotency-Key: + - 69b76e67-7c1c-4a51-a860-5a895da06e93 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:49 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, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fproducts; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 69b76e67-7c1c-4a51-a860-5a895da06e93 + Original-Request: + - req_MuD9QM27uRId6C + Request-Id: + - req_MuD9QM27uRId6C + 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_OyavSIcaG6RSyK", + "object": "product", + "active": true, + "attributes": [], + "created": 1699557469, + "default_price": null, + "description": "A great description", + "features": [], + "identifiers": {}, + "images": [], + "livemode": false, + "metadata": { + "salesforce_product2_id": "01t6s000004g3qFAAQ", + "salesforce_product2_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01t6s000004g3qFAAQ" + }, + "name": "REST Product2 2023-11-09 00:00:00 UTC", + "package_dimensions": null, + "product_class": null, + "shippable": null, + "sku": "rest-product2--2023-11-09-000000-utc-1", + "statement_descriptor": null, + "tax_code": null, + "type": "service", + "unit_label": null, + "updated": 1699557469, + "url": null + } + recorded_at: Thu, 09 Nov 2023 19:17:49 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qFAAQ + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"prod_OyavSIcaG6RSyK"}' + 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: + - Thu, 09 Nov 2023 19:17:49 GMT + Set-Cookie: + - BrowserId=q-O93n80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 + 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=17/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:49 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qFAAQ%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:49 GMT + Set-Cookie: + - BrowserId=rAvfUn80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=18/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: Thu, 09 Nov 2023 19:17:49 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qFAAQ%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:49 GMT + Set-Cookie: + - BrowserId=rBwyz380Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=15/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: Thu, 09 Nov 2023 19:17:49 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Product2/01t6s000004g3qFAAQ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:49 GMT + Set-Cookie: + - BrowserId=rChA-X80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=19/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:49 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/01t6s000004g3qFAAQ"},"Id":"01t6s000004g3qFAAQ","Name":"REST + Product2 2023-11-09 00:00:00 UTC","ProductCode":"EfxBsBKAsjaF0caCUQPWQYJ8h61G","Description":"A + great description","IsActive":true,"CreatedDate":"2023-11-09T19:17:09.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:49.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:49.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_OyavSIcaG6RSyK","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/prod_OyavSIcaG6RSyK"}' + recorded_at: Thu, 09 Nov 2023 19:17:49 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mv4AAE%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:49 GMT + Set-Cookie: + - BrowserId=rD0BI380Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:49 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=14/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: Thu, 09 Nov 2023 19:17:49 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20SBQQ__OrderItemConsumptionSchedule__c%0AWHERE%20SBQQ__OrderItem__c%20=%20%278026s0000014Mv4AAE%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:50 GMT + Set-Cookie: + - BrowserId=rE1VGn80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=13/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: Thu, 09 Nov 2023 19:17:50 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%0AFROM%20ProductConsumptionSchedule%0AWHERE%20ProductId%20=%20%2701t6s000004g3qFAAQ%27%0A + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:50 GMT + Set-Cookie: + - BrowserId=rF99mX80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=15/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: Thu, 09 Nov 2023 19:17:50 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_OyavSIcaG6RSyK&metadata[salesforce_pricebook_entry_id]=01u6s000006MyQmAAK&metadata[salesforce_pricebook_entry_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F01u6s000006MyQmAAK + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Idempotency-Key: + - 15db5cfb-c1da-4adb-8263-f0d318beec09 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:50 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, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fprices; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 15db5cfb-c1da-4adb-8263-f0d318beec09 + Original-Request: + - req_JDngIwlGFKNuox + Request-Id: + - req_JDngIwlGFKNuox + 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_1OAdjeIsgf92XbAOXflagUzZ", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557470, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyQmAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQmAAK" + }, + "nickname": null, + "product": "prod_OyavSIcaG6RSyK", + "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: Thu, 09 Nov 2023 19:17:50 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/PricebookEntry/01u6s000006MyQmAAK + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"price_1OAdjeIsgf92XbAOXflagUzZ"}' + 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: + - Thu, 09 Nov 2023 19:17:50 GMT + Set-Cookie: + - BrowserId=rMD-OX80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:50 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:50 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:50 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + Content-Security-Policy: + - upgrade-insecure-requests + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=15/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:50 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order_Item__c%20=%20%278026s0000014Mv4AAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:51 GMT + Set-Cookie: + - BrowserId=rON6s380Ee6xgs17GRRpNg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=15/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hcEAA"},"Id":"a1N6s00000113hcEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:51 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Line_Stripe_Coupon_Association__c%20where%20Quote_Line__c%20=%20%27a0v6s000000tlboAAA%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:51 GMT + Set-Cookie: + - BrowserId=rPMyGn80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=14/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":"Quote_Line_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/a1P6s000001Bk56EAC"},"Id":"a1P6s000001Bk56EAC"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:51 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hcEAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:51 GMT + Set-Cookie: + - BrowserId=rP9nKn80Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=20/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:45 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hcEAA"},"Id":"a1N6s00000113hcEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0003","CreatedDate":"2023-11-09T19:17:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:45.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + percent off coupon","Order_Item__c":"8026s0000014Mv4AAE","Order__c":null,"Percent_Off__c":25.0,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHKEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:17:51 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHKEAY + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:51 GMT + Set-Cookie: + - BrowserId=rRB9-H80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=16/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:35 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHKEAY"},"Id":"a1R6s000000uvHKEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0002","CreatedDate":"2023-11-09T19:17:35.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:35.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:35.000+0000","Amount_Off__c":null,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"Twenty-five + percent off coupon","Percent_Off__c":25.0,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:17:51 GMT +- request: + method: post + uri: https://api.stripe.com/v1/coupons + body: + encoding: UTF-8 + string: name=Twenty-five+percent+off+coupon&percent_off=25.0&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hcEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hcEAA + 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_MuD9QM27uRId6C","request_duration_ms":271}}' + Idempotency-Key: + - 913f0f02-f19d-463b-bb28-821bed50f819 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:51 GMT + Content-Type: + - application/json + Content-Length: + - '547' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 913f0f02-f19d-463b-bb28-821bed50f819 + Original-Request: + - req_wdV0ir7rUZvGDO + Request-Id: + - req_wdV0ir7rUZvGDO + 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": "XNuXMR2Q", + "object": "coupon", + "amount_off": null, + "created": 1699557471, + "currency": null, + "duration": "once", + "duration_in_months": null, + "livemode": false, + "max_redemptions": null, + "metadata": { + "salesforce_order_stripe_coupon_id": "a1N6s00000113hcEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hcEAA" + }, + "name": "Twenty-five percent off coupon", + "percent_off": 25.0, + "redeem_by": null, + "times_redeemed": 0, + "valid": true + } + recorded_at: Thu, 09 Nov 2023 19:17:51 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hcEAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"XNuXMR2Q"}' + 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: + - Thu, 09 Nov 2023 19:17:51 GMT + Set-Cookie: + - BrowserId=rUNNvX80Ee68uTvvk56yZg; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 + 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=16/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:51 GMT +- request: + method: get + uri: https://connect-saas-89822-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: + - Thu, 09 Nov 2023 19:17:51 GMT + Set-Cookie: + - BrowserId=rVUn_X80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:51 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=16/5000000 + Etag: + - '"80b46bc9--gzip"' + Last-Modified: + - Mon, 30 Oct 2023 17:32:26 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Thu, 09 Nov 2023 19:17:52 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHKEAY + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"XNuXMR2Q"}' + 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: + - Thu, 09 Nov 2023 19:17:52 GMT + Set-Cookie: + - BrowserId=rZ3JJH80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=16/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:52 GMT +- request: + method: get + uri: https://connect-saas-89822-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: + - Thu, 09 Nov 2023 19:17:52 GMT + Set-Cookie: + - BrowserId=ra5rvH80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=17/5000000 + Etag: + - '"80b46bc9--gzip"' + Last-Modified: + - Mon, 30 Oct 2023 17:32:26 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"encoding":"UTF-8","maxBatchSize":200,"sobjects":[{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pp","label":"AI + Application","labelPlural":"AI Applications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplication/{ID}","describe":"/services/data/v58.0/sobjects/AIApplication/describe","sobject":"/services/data/v58.0/sobjects/AIApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6S9","label":"AI + Application config","labelPlural":"AI Application configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIApplicationConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIApplicationConfig/{ID}","describe":"/services/data/v58.0/sobjects/AIApplicationConfig/describe","sobject":"/services/data/v58.0/sobjects/AIApplicationConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qd","label":"AI + Insight Action","labelPlural":"AI Insight Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightAction/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightAction/describe","sobject":"/services/data/v58.0/sobjects/AIInsightAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9bq","label":"AI + Insight Feedback","labelPlural":"AI Insight Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightFeedback/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightFeedback/describe","sobject":"/services/data/v58.0/sobjects/AIInsightFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T2","label":"AI + Insight Reason","labelPlural":"AI Insight Reasons","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightReason","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightReason/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightReason/describe","sobject":"/services/data/v58.0/sobjects/AIInsightReason"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qc","label":"AI + Insight Value","labelPlural":"AI Insight Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIInsightValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIInsightValue/{ID}","describe":"/services/data/v58.0/sobjects/AIInsightValue/describe","sobject":"/services/data/v58.0/sobjects/AIInsightValue"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ae","label":"AI + Prediction Event","labelPlural":"AI Prediction Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIPredictionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIPredictionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AIPredictionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AIPredictionEvent/describe","sobject":"/services/data/v58.0/sobjects/AIPredictionEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9qb","label":"AI + Record Insight","labelPlural":"AI Record Insights","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AIRecordInsight","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AIRecordInsight/{ID}","describe":"/services/data/v58.0/sobjects/AIRecordInsight/describe","sobject":"/services/data/v58.0/sobjects/AIRecordInsight"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Accepted + Event Relation","labelPlural":"Accepted Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AcceptedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AcceptedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/AcceptedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/AcceptedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"001","label":"Account","labelPlural":"Accounts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Account","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Account/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Account/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Account/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Account/listviews","describe":"/services/data/v58.0/sobjects/Account/describe","quickActions":"/services/data/v58.0/sobjects/Account/quickActions","layouts":"/services/data/v58.0/sobjects/Account/describe/layouts","sobject":"/services/data/v58.0/sobjects/Account"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Change Event","labelPlural":"Account Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CA","label":"Account + Clean Info","labelPlural":"Account Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/AccountCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/AccountCleanInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02Z","label":"Account + Contact Role","labelPlural":"Account Contact Roles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRole/{ID}","describe":"/services/data/v58.0/sobjects/AccountContactRole/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AccountContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Contact Role Change Event","labelPlural":"Account Contact Role Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AccountContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + Feed","labelPlural":"Account Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountFeed/{ID}","describe":"/services/data/v58.0/sobjects/AccountFeed/describe","sobject":"/services/data/v58.0/sobjects/AccountFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Account","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Account + History","labelPlural":"Account History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountHistory/{ID}","describe":"/services/data/v58.0/sobjects/AccountHistory/describe","sobject":"/services/data/v58.0/sobjects/AccountHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Account + Partner","labelPlural":"Account Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AccountPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AccountPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AccountPartner/{ID}","describe":"/services/data/v58.0/sobjects/AccountPartner/describe","layouts":"/services/data/v58.0/sobjects/AccountPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/AccountPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Account","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00r","label":"Account + Share","labelPlural":"Account Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AccountShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AccountShare/{ID}","describe":"/services/data/v58.0/sobjects/AccountShare/describe","sobject":"/services/data/v58.0/sobjects/AccountShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07g","label":"Action + Link Group Template","labelPlural":"Action Link Group Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ActionLinkGroupTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkGroupTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07l","label":"Action + Link Template","labelPlural":"Action Link Templates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ActionLinkTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActionLinkTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe","layouts":"/services/data/v58.0/sobjects/ActionLinkTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ActionLinkTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H2","label":"Active + Feature License Metric","labelPlural":"Active Feature License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveFeatureLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveFeatureLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H1","label":"Active + Permission Set License Metric","labelPlural":"Active Permission Set License + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivePermSetLicenseMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric/describe","sobject":"/services/data/v58.0/sobjects/ActivePermSetLicenseMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5H0","label":"Active + Profile Metric","labelPlural":"Active Profile Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActiveProfileMetric","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActiveProfileMetric/{ID}","describe":"/services/data/v58.0/sobjects/ActiveProfileMetric/describe","sobject":"/services/data/v58.0/sobjects/ActiveProfileMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2fp","label":"Activity + Field History","labelPlural":"Activity Field Histories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityFieldHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Activity + History","labelPlural":"Activity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ActivityHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ActivityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ActivityHistory/describe","sobject":"/services/data/v58.0/sobjects/ActivityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04m","label":"Additional + Directory Number","labelPlural":"Additional Directory Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AdditionalNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AdditionalNumber/{ID}","describe":"/services/data/v58.0/sobjects/AdditionalNumber/describe","sobject":"/services/data/v58.0/sobjects/AdditionalNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"130","label":"Address","labelPlural":"Addresses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Address","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Address/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Address/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Address/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Address/describe","layouts":"/services/data/v58.0/sobjects/Address/describe/layouts","sobject":"/services/data/v58.0/sobjects/Address"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Aggregate + Result","labelPlural":"Aggregate Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AggregateResult","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AggregateResult/{ID}","describe":"/services/data/v58.0/sobjects/AggregateResult/describe","sobject":"/services/data/v58.0/sobjects/AggregateResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Z7","label":"Alternative + Payment Method","labelPlural":"Alternative Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AlternativePaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/AlternativePaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/AlternativePaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethod"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AlternativePaymentMethod","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Alternative + Payment Method Share","labelPlural":"Alternative Payment Method Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AlternativePaymentMethodShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/{ID}","describe":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare/describe","sobject":"/services/data/v58.0/sobjects/AlternativePaymentMethodShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bt","label":"Announcement","labelPlural":"Announcements","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Announcement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Announcement/{ID}","describe":"/services/data/v58.0/sobjects/Announcement/describe","sobject":"/services/data/v58.0/sobjects/Announcement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01p","label":"Apex + Class","labelPlural":"Apex Classes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApexClass","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApexClass/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApexClass/{ID}","describe":"/services/data/v58.0/sobjects/ApexClass/describe","layouts":"/services/data/v58.0/sobjects/ApexClass/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApexClass"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"099","label":"Visualforce + Component","labelPlural":"Visualforce Components","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexComponent/{ID}","describe":"/services/data/v58.0/sobjects/ApexComponent/describe","sobject":"/services/data/v58.0/sobjects/ApexComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06j","label":"Apex + Email Notification","labelPlural":"Apex Email Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexEmailNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexEmailNotification/{ID}","describe":"/services/data/v58.0/sobjects/ApexEmailNotification/describe","sobject":"/services/data/v58.0/sobjects/ApexEmailNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07L","label":"Apex + Debug Log","labelPlural":"Apex Debug Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexLog/{ID}","describe":"/services/data/v58.0/sobjects/ApexLog/describe","sobject":"/services/data/v58.0/sobjects/ApexLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"066","label":"Visualforce + Page","labelPlural":"Visualforce Pages","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexPage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPage/{ID}","describe":"/services/data/v58.0/sobjects/ApexPage/describe","sobject":"/services/data/v58.0/sobjects/ApexPage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ve","label":"Apex + Page Info","labelPlural":"Apex Pages Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexPageInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexPageInfo/{ID}","describe":"/services/data/v58.0/sobjects/ApexPageInfo/describe","sobject":"/services/data/v58.0/sobjects/ApexPageInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"709","label":"Apex + Test Queue Item","labelPlural":"Apex Test Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestQueueItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestQueueItem/describe","sobject":"/services/data/v58.0/sobjects/ApexTestQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07M","label":"Apex + Test Result","labelPlural":"Apex Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05n","label":"Apex + Test Result Limit","labelPlural":"Apex Test Result Limit","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestResultLimits","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestResultLimits/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestResultLimits/describe","sobject":"/services/data/v58.0/sobjects/ApexTestResultLimits"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05m","label":"Apex + Test Run Result","labelPlural":"Apex Test Run Result","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestRunResult","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestRunResult/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestRunResult/describe","sobject":"/services/data/v58.0/sobjects/ApexTestRunResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05F","label":"Apex + Test Suite","labelPlural":"Apex Test Suites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTestSuite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTestSuite/{ID}","describe":"/services/data/v58.0/sobjects/ApexTestSuite/describe","sobject":"/services/data/v58.0/sobjects/ApexTestSuite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01q","label":"Apex + Trigger","labelPlural":"Apex Triggers","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ApexTrigger","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTrigger/{ID}","describe":"/services/data/v58.0/sobjects/ApexTrigger/describe","sobject":"/services/data/v58.0/sobjects/ApexTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0kt","label":"Apex + Type Implementor","labelPlural":"Apex Type Implementors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApexTypeImplementor","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApexTypeImplementor/{ID}","describe":"/services/data/v58.0/sobjects/ApexTypeImplementor/describe","sobject":"/services/data/v58.0/sobjects/ApexTypeImplementor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j5","label":"API + Anomaly Event","labelPlural":"API Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ApiAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j6","label":"API + Anomaly Event Store","labelPlural":"API Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApiAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ApiAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApiAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"API + Anomaly Event Store Feed","labelPlural":"API Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ApiAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07t","label":"API + Event","labelPlural":"API Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEvent/{ID}","describe":"/services/data/v58.0/sobjects/ApiEvent/describe","sobject":"/services/data/v58.0/sobjects/ApiEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QI","label":"API + Event Stream","labelPlural":"API Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApiEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApiEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ApiEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ApiEventStream/describe","sobject":"/services/data/v58.0/sobjects/ApiEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XI","label":"App + Analytics Query Request","labelPlural":"App Analytics Query Requests","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"AppAnalyticsQueryRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/{ID}","describe":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest/describe","sobject":"/services/data/v58.0/sobjects/AppAnalyticsQueryRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06m","label":"App + Definition","labelPlural":"App Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AppDefinition/describe","sobject":"/services/data/v58.0/sobjects/AppDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mg","label":"App + Extension","labelPlural":"App Extensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppExtension/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppExtension/{ID}","describe":"/services/data/v58.0/sobjects/AppExtension/describe","layouts":"/services/data/v58.0/sobjects/AppExtension/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppExtension"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AppExtension","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"App + Extension Change Event","labelPlural":"App Extension Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppExtensionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AppExtensionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AppExtensionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DS","label":"AppMenuItem","labelPlural":"AppMenuItems","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/AppMenuItem/describe","sobject":"/services/data/v58.0/sobjects/AppMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06o","label":"App + Tab Member","labelPlural":"App Tab Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppTabMember","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppTabMember/{ID}","describe":"/services/data/v58.0/sobjects/AppTabMember/describe","sobject":"/services/data/v58.0/sobjects/AppTabMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0j8","label":"Application + Usage Assignment","labelPlural":"Application Usage Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppUsageAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppUsageAssignment/{ID}","describe":"/services/data/v58.0/sobjects/AppUsageAssignment/describe","layouts":"/services/data/v58.0/sobjects/AppUsageAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppUsageAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0mS","label":"Appointment + Topic Time Slot","labelPlural":"Appointment Topic Time Slots","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe","quickActions":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/quickActions","layouts":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlot"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val AppointmentTopicTimeSlot not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AppointmentTopicTimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Topic Time Slot History","labelPlural":"Appointment Topic Time Slot History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AppointmentTopicTimeSlotHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/{ID}","describe":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory/describe","sobject":"/services/data/v58.0/sobjects/AppointmentTopicTimeSlotHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"52D","label":"Appointment + Bundle Aggregation Duration Downscale","labelPlural":"Appointment Bundle Aggregation + Duration Downscales","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrDurDnscale","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscale"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrDurDnscale","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Duration Downscale Feed","labelPlural":"Appointment Bundle + Aggregation Duration Downscale Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrDurDnscaleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrDurDnscaleFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7yi","label":"Appointment + Bundle Aggregation Policy","labelPlural":"Appointment Bundle Aggregation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleAggrPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleAggrPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Aggregation Policy Feed","labelPlural":"Appointment Bundle Aggregation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleAggrPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleAggrPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Cv","label":"Appointment + Bundle Config","labelPlural":"Appointment Bundle Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleConfig","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfig/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleConfig/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleConfig/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleConfig/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleConfig"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Feed","labelPlural":"Appointment Bundle Config Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ApptBundleConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config History","labelPlural":"Appointment Bundle Config History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigHistory/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundleConfig","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Config Share","labelPlural":"Appointment Bundle Config Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleConfigShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleConfigShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleConfigShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleConfigShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sT","label":"Appointment + Bundle Policy","labelPlural":"Appointment Bundle Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Feed","labelPlural":"Appointment Bundle Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ApptBundlePolicy","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Share","labelPlural":"Appointment Bundle Policy Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicyShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicyShare/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicyShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7b0","label":"Appointment + Bundle Policy Service Territory","labelPlural":"Appointment Bundle Policy + Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePolicySvcTerr","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerr"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePolicySvcTerr","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Policy Service Territory Feed","labelPlural":"Appointment Bundle Policy + Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePolicySvcTerrFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePolicySvcTerrFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8XA","label":"Appointment + Bundle Propagation Policy","labelPlural":"Appointment Bundle Propagation Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundlePropagatePolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundlePropagatePolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Propagation Policy Feed","labelPlural":"Appointment Bundle Propagation + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundlePropagatePolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundlePropagatePolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6KP","label":"Appointment + Bundle Restriction Policy","labelPlural":"Appointment Bundle Restriction Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleRestrictPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleRestrictPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Restriction Policy Feed","labelPlural":"Appointment Bundle Restriction + Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleRestrictPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleRestrictPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lU","label":"Appointment + Bundle Sort Policy","labelPlural":"Appointment Bundle Sort Policies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ApptBundleSortPolicy","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe","quickActions":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/quickActions","layouts":"/services/data/v58.0/sobjects/ApptBundleSortPolicy/describe/layouts","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicy"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ApptBundleSortPolicy","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Appointment + Bundle Sort Policy Feed","labelPlural":"Appointment Bundle Sort Policy Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ApptBundleSortPolicyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/{ID}","describe":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed/describe","sobject":"/services/data/v58.0/sobjects/ApptBundleSortPolicyFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02i","label":"Asset","labelPlural":"Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Asset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Asset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Asset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Asset/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Asset/listviews","describe":"/services/data/v58.0/sobjects/Asset/describe","quickActions":"/services/data/v58.0/sobjects/Asset/quickActions","layouts":"/services/data/v58.0/sobjects/Asset/describe/layouts","sobject":"/services/data/v58.0/sobjects/Asset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nL","label":"Asset + Action","labelPlural":"Asset Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetAction/describe","layouts":"/services/data/v58.0/sobjects/AssetAction/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nM","label":"Asset + Action Source","labelPlural":"Asset Action Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetActionSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetActionSource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetActionSource/describe","layouts":"/services/data/v58.0/sobjects/AssetActionSource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetActionSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0oV","label":"Asset + Attribute","labelPlural":"Asset Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetAttribute","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetAttribute/{ID}","describe":"/services/data/v58.0/sobjects/AssetAttribute/describe","layouts":"/services/data/v58.0/sobjects/AssetAttribute/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetAttribute"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetAttribute","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Attribute Change Event","labelPlural":"Asset Attribute Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetAttributeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetAttributeChangeEvent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Change Event","labelPlural":"Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gP","label":"Asset + Downtime Period","labelPlural":"Asset Downtime Periods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetDowntimePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriod/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe","quickActions":"/services/data/v58.0/sobjects/AssetDowntimePeriod/quickActions","layouts":"/services/data/v58.0/sobjects/AssetDowntimePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriod"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period Feed","labelPlural":"Asset Downtime Period Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetDowntimePeriod","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Downtime Period History","labelPlural":"Asset Downtime Period History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetDowntimePeriodHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetDowntimePeriodHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Feed","labelPlural":"Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Asset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + History","labelPlural":"Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1AR","label":"Asset + Relationship","labelPlural":"Asset Relationships","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetRelationship","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetRelationship/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetRelationship/describe","quickActions":"/services/data/v58.0/sobjects/AssetRelationship/quickActions","layouts":"/services/data/v58.0/sobjects/AssetRelationship/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetRelationship"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship Feed","labelPlural":"Asset Relationship Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetRelationship","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Relationship History","labelPlural":"Asset Relationship History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetRelationshipHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetRelationshipHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetRelationshipHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetRelationshipHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Asset","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"70a","label":"Asset + Share","labelPlural":"Asset Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetShare/{ID}","describe":"/services/data/v58.0/sobjects/AssetShare/describe","sobject":"/services/data/v58.0/sobjects/AssetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4nK","label":"Asset + State Period","labelPlural":"Asset State Periods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssetStatePeriod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetStatePeriod/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetStatePeriod/describe","layouts":"/services/data/v58.0/sobjects/AssetStatePeriod/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetStatePeriod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Li","label":"Asset + Token Event","labelPlural":"Asset Token Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetTokenEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetTokenEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetTokenEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetTokenEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetTokenEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4xo","label":"Asset + Warranty","labelPlural":"Asset Warranties","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssetWarranty","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssetWarranty/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssetWarranty/describe","quickActions":"/services/data/v58.0/sobjects/AssetWarranty/quickActions","layouts":"/services/data/v58.0/sobjects/AssetWarranty/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssetWarranty"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Change Event","labelPlural":"Asset Warranty Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty Feed","labelPlural":"Asset Warranty Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyFeed/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssetWarranty","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Asset + Warranty History","labelPlural":"Asset Warranty History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssetWarrantyHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssetWarrantyHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssetWarrantyHistory/describe","sobject":"/services/data/v58.0/sobjects/AssetWarrantyHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03r","label":"Assigned + Resource","labelPlural":"Assigned Resources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"AssignedResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssignedResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssignedResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssignedResource/describe","quickActions":"/services/data/v58.0/sobjects/AssignedResource/quickActions","layouts":"/services/data/v58.0/sobjects/AssignedResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssignedResource"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Change Event","labelPlural":"Assigned Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AssignedResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Assigned + Resource Feed","labelPlural":"Assigned Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignedResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignedResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/AssignedResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/AssignedResourceFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Q","label":"Assignment + Rule","labelPlural":"Assignment Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssignmentRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssignmentRule/{ID}","describe":"/services/data/v58.0/sobjects/AssignmentRule/describe","sobject":"/services/data/v58.0/sobjects/AssignmentRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kt","label":"Associated + Location","labelPlural":"Associated Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AssociatedLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AssociatedLocation/describe","layouts":"/services/data/v58.0/sobjects/AssociatedLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/AssociatedLocation"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AssociatedLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Associated + Location History","labelPlural":"Associated Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AssociatedLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AssociatedLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/AssociatedLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/AssociatedLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"707","label":"Apex + Job","labelPlural":"Apex Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncApexJob","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncApexJob/{ID}","describe":"/services/data/v58.0/sobjects/AsyncApexJob/describe","sobject":"/services/data/v58.0/sobjects/AsyncApexJob"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xw","label":"Async + Operation Event","labelPlural":"Async Operation Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationEvent/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ao","label":"Async + Operation Log","labelPlural":"Async Operation Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AsyncOperationLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationLog/{ID}","describe":"/services/data/v58.0/sobjects/AsyncOperationLog/describe","layouts":"/services/data/v58.0/sobjects/AsyncOperationLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/AsyncOperationLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0YD","label":"Async + Operation Status","labelPlural":"Async Operation Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AsyncOperationStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AsyncOperationStatus/{ID}","eventSchema":"/services/data/v58.0/sobjects/AsyncOperationStatus/eventSchema","describe":"/services/data/v58.0/sobjects/AsyncOperationStatus/describe","sobject":"/services/data/v58.0/sobjects/AsyncOperationStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attached + Content Document","labelPlural":"Attached Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttachedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttachedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/AttachedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/AttachedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00P","label":"Attachment","labelPlural":"Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Attachment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Attachment/{ID}","describe":"/services/data/v58.0/sobjects/Attachment/describe","sobject":"/services/data/v58.0/sobjects/Attachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0tj","label":"Attribute + Definition","labelPlural":"Attribute Definitions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/AttributeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/AttributeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Feed","labelPlural":"Attribute Definition Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition History","labelPlural":"Attribute Definition History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Definition Share","labelPlural":"Attribute Definition Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/AttributeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v5","label":"Attribute + Picklist","labelPlural":"Attribute Picklists","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklist","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklist/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklist/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklist/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklist/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklist"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Feed","labelPlural":"Attribute Picklist Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklist","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist History","labelPlural":"Attribute Picklist History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AttributePicklist","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Share","labelPlural":"Attribute Picklist Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistShare/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistShare/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0v6","label":"Attribute + Picklist Value","labelPlural":"Attribute Picklist Values","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AttributePicklistValue","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValue/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AttributePicklistValue/describe","quickActions":"/services/data/v58.0/sobjects/AttributePicklistValue/quickActions","layouts":"/services/data/v58.0/sobjects/AttributePicklistValue/describe/layouts","sobject":"/services/data/v58.0/sobjects/AttributePicklistValue"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value Feed","labelPlural":"Attribute Picklist Value Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueFeed/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AttributePicklistValue","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Attribute + Picklist Value History","labelPlural":"Attribute Picklist Value History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AttributePicklistValueHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/{ID}","describe":"/services/data/v58.0/sobjects/AttributePicklistValueHistory/describe","sobject":"/services/data/v58.0/sobjects/AttributePicklistValueHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ad","label":"Lightning + Component Definition","labelPlural":"Lightning Component Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinition/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinition/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ab","label":"Aura + Component Bundle","labelPlural":"Aura Component Bundles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundle","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundle/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundle/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ab","label":"AuraDefinitionBundle + Info","labelPlural":"AuraDefinitionBundle Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionBundleInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionBundleInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ad","label":"AuraDefinition + Info","labelPlural":"AuraDefinition Infos","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuraDefinitionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuraDefinitionInfo/{ID}","describe":"/services/data/v58.0/sobjects/AuraDefinitionInfo/describe","sobject":"/services/data/v58.0/sobjects/AuraDefinitionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07T","label":"Authentication + Configuration","labelPlural":"Authentication Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfig/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfig/describe","sobject":"/services/data/v58.0/sobjects/AuthConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07U","label":"Authentication + Configuration Auth. Provider","labelPlural":"Authentication Configuration + Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthConfigProviders","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthConfigProviders/{ID}","describe":"/services/data/v58.0/sobjects/AuthConfigProviders/describe","sobject":"/services/data/v58.0/sobjects/AuthConfigProviders"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SO","label":"Auth. + Provider","labelPlural":"Auth. Providers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthProvider/{ID}","describe":"/services/data/v58.0/sobjects/AuthProvider/describe","sobject":"/services/data/v58.0/sobjects/AuthProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ak","label":"Auth + Session","labelPlural":"Auth Sessions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthSession","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthSession/{ID}","describe":"/services/data/v58.0/sobjects/AuthSession/describe","sobject":"/services/data/v58.0/sobjects/AuthSession"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cI","label":"Authorization + Form","labelPlural":"Authorization Forms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationForm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationForm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationForm/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationForm/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationForm/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationForm"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cK","label":"Authorization + Form Consent","labelPlural":"Authorization Form Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormConsent/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Change Event","labelPlural":"Authorization Form Consent Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent History","labelPlural":"Authorization Form Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Consent Share","labelPlural":"Authorization Form Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cM","label":"Authorization + Form Data Use","labelPlural":"Authorization Form Data Uses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormDataUse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormDataUse/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUse"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormDataUse","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use History","labelPlural":"Authorization Form Data Use History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationFormDataUse","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Data Use Share","labelPlural":"Authorization Form Data Use Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormDataUseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormDataUseShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationForm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form History","labelPlural":"Authorization Form History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"AuthorizationForm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Share","labelPlural":"Authorization Form Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormShare/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormShare/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cN","label":"Authorization + Form Text","labelPlural":"Authorization Form Texts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"AuthorizationFormText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormText/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/AuthorizationFormText/describe","quickActions":"/services/data/v58.0/sobjects/AuthorizationFormText/quickActions","layouts":"/services/data/v58.0/sobjects/AuthorizationFormText/describe/layouts","sobject":"/services/data/v58.0/sobjects/AuthorizationFormText"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text Feed","labelPlural":"Authorization Form Text Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"AuthorizationFormText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Authorization + Form Text History","labelPlural":"Authorization Form Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"AuthorizationFormTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory/describe","sobject":"/services/data/v58.0/sobjects/AuthorizationFormTextHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08P","label":"Background + Operation","labelPlural":"Background Operations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"BackgroundOperation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BackgroundOperation/{ID}","describe":"/services/data/v58.0/sobjects/BackgroundOperation/describe","layouts":"/services/data/v58.0/sobjects/BackgroundOperation/describe/layouts","sobject":"/services/data/v58.0/sobjects/BackgroundOperation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QQ","label":"Batch + Apex Error Platform Event","labelPlural":"Batch Apex Error Platform Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BatchApexErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BatchApexErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BatchApexErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BatchApexErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/BatchApexErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"016","label":"Letterhead","labelPlural":"Letterheads","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandTemplate/{ID}","describe":"/services/data/v58.0/sobjects/BrandTemplate/describe","sobject":"/services/data/v58.0/sobjects/BrandTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lw","label":"Branding + Set","labelPlural":"Branding Sets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSet/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSet/describe","sobject":"/services/data/v58.0/sobjects/BrandingSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ly","label":"Branding + Set Property","labelPlural":"Branding Set Properties","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BrandingSetProperty","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BrandingSetProperty/{ID}","describe":"/services/data/v58.0/sobjects/BrandingSetProperty/describe","sobject":"/services/data/v58.0/sobjects/BrandingSetProperty"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5LH","label":"Briefcase + Assignment","labelPlural":"Briefcase Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignment/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseAssignment/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseAssignment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Assignment Change Event","labelPlural":"Briefcase Assignment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseAssignmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseAssignmentChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rY","label":"Briefcase + Definition","labelPlural":"Briefcase Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinition/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseDefinition/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinition"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"BriefcaseDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Briefcase + Definition Change Event","labelPlural":"Briefcase Definition Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseDefinitionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseDefinitionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rX","label":"Briefcase + Rule","labelPlural":"Briefcase Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRule/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRule/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1rZ","label":"Briefcase + Rule Filter","labelPlural":"Briefcase Rule Filters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BriefcaseRuleFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/{ID}","describe":"/services/data/v58.0/sobjects/BriefcaseRuleFilter/describe","sobject":"/services/data/v58.0/sobjects/BriefcaseRuleFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hx","label":"Bulk + API Result Event","labelPlural":"Bulk API Result Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/BulkApiResultEvent/eventSchema","describe":"/services/data/v58.0/sobjects/BulkApiResultEvent/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hJ","label":"Bulk + API Result Event Store","labelPlural":"Bulk API Result Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BulkApiResultEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BulkApiResultEventStore/{ID}","describe":"/services/data/v58.0/sobjects/BulkApiResultEventStore/describe","sobject":"/services/data/v58.0/sobjects/BulkApiResultEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1BU","label":"Business + Brand","labelPlural":"Business Brands","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessBrand","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessBrand/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/BusinessBrand/describe","layouts":"/services/data/v58.0/sobjects/BusinessBrand/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessBrand"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"BusinessBrand","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Business + Brand Share","labelPlural":"Business Brand Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessBrandShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessBrandShare/{ID}","describe":"/services/data/v58.0/sobjects/BusinessBrandShare/describe","sobject":"/services/data/v58.0/sobjects/BusinessBrandShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01m","label":"Business + Hours","labelPlural":"Business Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"BusinessHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/BusinessHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/BusinessHours/{ID}","describe":"/services/data/v58.0/sobjects/BusinessHours/describe","layouts":"/services/data/v58.0/sobjects/BusinessHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/BusinessHours"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"019","label":"Business + Process","labelPlural":"Business Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"BusinessProcess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/BusinessProcess/{ID}","describe":"/services/data/v58.0/sobjects/BusinessProcess/describe","sobject":"/services/data/v58.0/sobjects/BusinessProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"023","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Calendar","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Calendar/{ID}","describe":"/services/data/v58.0/sobjects/Calendar/describe","sobject":"/services/data/v58.0/sobjects/Calendar"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03A","label":"Calendar","labelPlural":"Calendars","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarView","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarView/{ID}","describe":"/services/data/v58.0/sobjects/CalendarView/describe","sobject":"/services/data/v58.0/sobjects/CalendarView"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CalendarView","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Calendar + Share","labelPlural":"Calendar Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CalendarViewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CalendarViewShare/{ID}","describe":"/services/data/v58.0/sobjects/CalendarViewShare/describe","sobject":"/services/data/v58.0/sobjects/CalendarViewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04v","label":"Call + Center","labelPlural":"Call Centers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCenter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCenter/{ID}","describe":"/services/data/v58.0/sobjects/CallCenter/describe","sobject":"/services/data/v58.0/sobjects/CallCenter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hn","label":"CallCoachingMediaProvider","labelPlural":"CallCoachingMediaProviders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CallCoachingMediaProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/{ID}","describe":"/services/data/v58.0/sobjects/CallCoachingMediaProvider/describe","sobject":"/services/data/v58.0/sobjects/CallCoachingMediaProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"701","label":"Campaign","labelPlural":"Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Campaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Campaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Campaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Campaign/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Campaign/listviews","describe":"/services/data/v58.0/sobjects/Campaign/describe","quickActions":"/services/data/v58.0/sobjects/Campaign/quickActions","layouts":"/services/data/v58.0/sobjects/Campaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/Campaign"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Change Event","labelPlural":"Campaign Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Feed","labelPlural":"Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/CampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/CampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Campaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Field History","labelPlural":"Campaign Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/CampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/CampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03V","label":"Campaign + Influence Model","labelPlural":"Campaign Influence Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignInfluenceModel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignInfluenceModel/{ID}","describe":"/services/data/v58.0/sobjects/CampaignInfluenceModel/describe","sobject":"/services/data/v58.0/sobjects/CampaignInfluenceModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00v","label":"Campaign + Member","labelPlural":"Campaign Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMember/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMember/describe","layouts":"/services/data/v58.0/sobjects/CampaignMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Change Event","labelPlural":"Campaign Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Y","label":"Campaign + Member Status","labelPlural":"Campaign Member Statuses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatus","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatus/{ID}","describe":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe","layouts":"/services/data/v58.0/sobjects/CampaignMemberStatus/describe/layouts","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CampaignMemberStatus","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Campaign + Member Status Change Event","labelPlural":"Campaign Member Status Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignMemberStatusChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CampaignMemberStatusChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Campaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08s","label":"Campaign + Share","labelPlural":"Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/CampaignShare/describe","sobject":"/services/data/v58.0/sobjects/CampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03O","label":"Card + Payment Method","labelPlural":"Card Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CardPaymentMethod","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CardPaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/CardPaymentMethod/describe","quickActions":"/services/data/v58.0/sobjects/CardPaymentMethod/quickActions","layouts":"/services/data/v58.0/sobjects/CardPaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/CardPaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"500","label":"Case","labelPlural":"Cases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Case","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Case/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Case/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Case/describe/approvalLayouts","caseArticleSuggestions":"/services/data/v58.0/sobjects/Case/suggestedArticles","caseRowArticleSuggestions":"/services/data/v58.0/sobjects/Case/{ID}/suggestedArticles","listviews":"/services/data/v58.0/sobjects/Case/listviews","describe":"/services/data/v58.0/sobjects/Case/describe","quickActions":"/services/data/v58.0/sobjects/Case/quickActions","layouts":"/services/data/v58.0/sobjects/Case/describe/layouts","sobject":"/services/data/v58.0/sobjects/Case"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Change Event","labelPlural":"Case Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CaseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CaseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CaseChangeEvent"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Case + Comment","labelPlural":"Case Comments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseComment/{ID}","describe":"/services/data/v58.0/sobjects/CaseComment/describe","layouts":"/services/data/v58.0/sobjects/CaseComment/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03j","label":"Case + Contact Role","labelPlural":"Case Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseContactRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseContactRole/describe","layouts":"/services/data/v58.0/sobjects/CaseContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Feed","labelPlural":"Case Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseFeed/{ID}","describe":"/services/data/v58.0/sobjects/CaseFeed/describe","sobject":"/services/data/v58.0/sobjects/CaseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Case","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + History","labelPlural":"Case History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseHistory/{ID}","describe":"/services/data/v58.0/sobjects/CaseHistory/describe","sobject":"/services/data/v58.0/sobjects/CaseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"555","label":"Case + Milestone","labelPlural":"Case Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CaseMilestone","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CaseMilestone/{ID}","describe":"/services/data/v58.0/sobjects/CaseMilestone/describe","layouts":"/services/data/v58.0/sobjects/CaseMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/CaseMilestone"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01n","label":"Case + Share","labelPlural":"Case Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseShare/{ID}","describe":"/services/data/v58.0/sobjects/CaseShare/describe","sobject":"/services/data/v58.0/sobjects/CaseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"010","label":"Case + Solution","labelPlural":"Case Solution","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseSolution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseSolution/{ID}","describe":"/services/data/v58.0/sobjects/CaseSolution/describe","sobject":"/services/data/v58.0/sobjects/CaseSolution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Status Value","labelPlural":"Case Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseStatus/{ID}","describe":"/services/data/v58.0/sobjects/CaseStatus/describe","sobject":"/services/data/v58.0/sobjects/CaseStatus"}},{"activateable":false,"associateEntityType":"TeamMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member","labelPlural":"Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamMember"}},{"activateable":false,"associateEntityType":"TeamRole","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Case + Team Member Role","labelPlural":"Case Team Member Role","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamRole/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamRole/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamRole"}},{"activateable":false,"associateEntityType":"TeamTemplate","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team","labelPlural":"Predefined Case Team","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplate/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplate/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplate"}},{"activateable":false,"associateEntityType":"TeamTemplateMember","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Member","labelPlural":"Predefined Case Team Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateMember/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateMember"}},{"activateable":false,"associateEntityType":"TeamTemplateRecord","associateParentEntity":"Case","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Predefined + Case Team Record","labelPlural":"Predefined Case Team Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CaseTeamTemplateRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/{ID}","describe":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord/describe","sobject":"/services/data/v58.0/sobjects/CaseTeamTemplateRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02o","label":"Category + Data","labelPlural":"Category Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryData/{ID}","describe":"/services/data/v58.0/sobjects/CategoryData/describe","sobject":"/services/data/v58.0/sobjects/CategoryData"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02n","label":"Category + Node","labelPlural":"Category Nodes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CategoryNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CategoryNode/{ID}","describe":"/services/data/v58.0/sobjects/CategoryNode/describe","sobject":"/services/data/v58.0/sobjects/CategoryNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ca","label":"Chatter + Activity","labelPlural":"Chatter Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterActivity/{ID}","describe":"/services/data/v58.0/sobjects/ChatterActivity/describe","sobject":"/services/data/v58.0/sobjects/ChatterActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MY","label":"Extension","labelPlural":"Extensions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtension","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtension/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtension/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtension"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ob","label":"Chatter + Extension Configuration","labelPlural":"Chatter Extension Configurations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ChatterExtensionConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ChatterExtensionConfig/{ID}","describe":"/services/data/v58.0/sobjects/ChatterExtensionConfig/describe","sobject":"/services/data/v58.0/sobjects/ChatterExtensionConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"713","label":"Client + Browser","labelPlural":"Client Browser","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ClientBrowser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ClientBrowser/{ID}","describe":"/services/data/v58.0/sobjects/ClientBrowser/describe","sobject":"/services/data/v58.0/sobjects/ClientBrowser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0F9","label":"Group","labelPlural":"Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroup/{ID}","listviews":"/services/data/v58.0/sobjects/CollaborationGroup/listviews","describe":"/services/data/v58.0/sobjects/CollaborationGroup/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CollaborationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Group + Feed","labelPlural":"Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FB","label":"Group + Member","labelPlural":"Group Members","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMember/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I5","label":"Group + Member Request","labelPlural":"Group Member Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupMemberRequest","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest/describe","sobject":"/services/data/v58.0/sobjects/CollaborationGroupMemberRequest"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Aa","label":"Group + Record","labelPlural":"Group Records","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CollaborationGroupRecord","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationGroupRecord/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe","layouts":"/services/data/v58.0/sobjects/CollaborationGroupRecord/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationGroupRecord"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H1","label":"Chatter + Invitation","labelPlural":"Chatter Invitations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CollaborationInvitation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CollaborationInvitation/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationInvitation/describe","sobject":"/services/data/v58.0/sobjects/CollaborationInvitation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9CR","label":"Collaboration + Room","labelPlural":"Collaboration Rooms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CollaborationRoom","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CollaborationRoom/{ID}","describe":"/services/data/v58.0/sobjects/CollaborationRoom/describe","quickActions":"/services/data/v58.0/sobjects/CollaborationRoom/quickActions","layouts":"/services/data/v58.0/sobjects/CollaborationRoom/describe/layouts","sobject":"/services/data/v58.0/sobjects/CollaborationRoom"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05k","label":"Color + Definition","labelPlural":"Color Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ColorDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ColorDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ColorDefinition/describe","sobject":"/services/data/v58.0/sobjects/ColorDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note, + Attachment, Google Doc And File","labelPlural":"Notes, Attachments, Google + Docs And Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CombinedAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CombinedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/CombinedAttachment/describe","sobject":"/services/data/v58.0/sobjects/CombinedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xl","label":"Communication + Subscription","labelPlural":"Communication Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscription/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscription/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscription/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscription/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscription/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eB","label":"Communication + Subscription Channel Type","labelPlural":"Communication Subscription Channel + Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Feed","labelPlural":"Communication Subscription + Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type History","labelPlural":"Communication Subscription + Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Channel Type Share","labelPlural":"Communication Subscription + Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dY","label":"Communication + Subscription Consent","labelPlural":"Communication Subscription Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionConsent/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Change Event","labelPlural":"Communication Subscription + Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Feed","labelPlural":"Communication Subscription Consent + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent History","labelPlural":"Communication Subscription Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscriptionConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Consent Share","labelPlural":"Communication Subscription Consent + Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionConsentShare"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Feed","labelPlural":"Communication Subscription Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscription","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription History","labelPlural":"Communication Subscription History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CommSubscription","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Share","labelPlural":"Communication Subscription Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionShare/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionShare/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0al","label":"Communication + Subscription Timing","labelPlural":"Communication Subscription Timings","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CommSubscriptionTiming","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTiming/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe","quickActions":"/services/data/v58.0/sobjects/CommSubscriptionTiming/quickActions","layouts":"/services/data/v58.0/sobjects/CommSubscriptionTiming/describe/layouts","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTiming"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing Feed","labelPlural":"Communication Subscription Timing + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CommSubscriptionTiming","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Communication + Subscription Timing History","labelPlural":"Communication Subscription Timing History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CommSubscriptionTimingHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/{ID}","describe":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory/describe","sobject":"/services/data/v58.0/sobjects/CommSubscriptionTimingHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09a","label":"Zone","labelPlural":"Zones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Community","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Community/{ID}","describe":"/services/data/v58.0/sobjects/Community/describe","sobject":"/services/data/v58.0/sobjects/Community"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1QR","label":"Concurrent + Long Running Apex Error Event","labelPlural":"Concurrent Long Running Apex + Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConcurLongRunApexErrEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent/describe","sobject":"/services/data/v58.0/sobjects/ConcurLongRunApexErrEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ah","label":"Conference + Number","labelPlural":"Conference Numbers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConferenceNumber","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConferenceNumber/{ID}","describe":"/services/data/v58.0/sobjects/ConferenceNumber/describe","sobject":"/services/data/v58.0/sobjects/ConferenceNumber"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H4","label":"Connected + App","labelPlural":"Connected Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConnectedApplication","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConnectedApplication/{ID}","describe":"/services/data/v58.0/sobjects/ConnectedApplication/describe","sobject":"/services/data/v58.0/sobjects/ConnectedApplication"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mo","label":"Consumption + Rate","labelPlural":"Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionRate/describe","layouts":"/services/data/v58.0/sobjects/ConsumptionRate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionRate"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionRate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Rate History ID","labelPlural":"Consumption Rate History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionRateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionRateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionRateHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionRateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mh","label":"Consumption + Schedule","labelPlural":"Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ConsumptionSchedule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe","quickActions":"/services/data/v58.0/sobjects/ConsumptionSchedule/quickActions","layouts":"/services/data/v58.0/sobjects/ConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ConsumptionSchedule"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ConsumptionSchedule","labelPlural":"ConsumptionSchedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ConsumptionSchedule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule History ID","labelPlural":"Consumption Schedule History ID","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ConsumptionSchedule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Consumption + Schedule Share","labelPlural":"Consumption Schedule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConsumptionScheduleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/{ID}","describe":"/services/data/v58.0/sobjects/ConsumptionScheduleShare/describe","sobject":"/services/data/v58.0/sobjects/ConsumptionScheduleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"003","label":"Contact","labelPlural":"Contacts","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Contact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contact/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contact/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contact/listviews","describe":"/services/data/v58.0/sobjects/Contact/describe","quickActions":"/services/data/v58.0/sobjects/Contact/quickActions","layouts":"/services/data/v58.0/sobjects/Contact/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contact"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Change Event","labelPlural":"Contact Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CC","label":"Contact + Clean Info","labelPlural":"Contact Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/ContactCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/ContactCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Feed","labelPlural":"Contact Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContactFeed/describe","sobject":"/services/data/v58.0/sobjects/ContactFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + History","labelPlural":"Contact History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8lW","label":"Contact + Point Address","labelPlural":"Contact Point Addresses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddress/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointAddress/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointAddress/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointAddress/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointAddress"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Change Event","labelPlural":"Contact Point Address Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointAddress","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address History","labelPlural":"Contact Point Address History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointAddress","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Address Share","labelPlural":"Contact Point Address Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointAddressShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointAddressShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointAddressShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointAddressShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZX","label":"Contact + Point Consent","labelPlural":"Contact Point Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Change Event","labelPlural":"Contact Point Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent History","labelPlural":"Contact Point Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Consent Share","labelPlural":"Contact Point Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Vl","label":"Contact + Point Email","labelPlural":"Contact Point Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmail/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointEmail/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointEmail/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Change Event","labelPlural":"Contact Point Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email History","labelPlural":"Contact Point Email History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Email Share","labelPlural":"Contact Point Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ow","label":"Contact + Point Phone","labelPlural":"Contact Point Phones","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointPhone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointPhone/describe","quickActions":"/services/data/v58.0/sobjects/ContactPointPhone/quickActions","layouts":"/services/data/v58.0/sobjects/ContactPointPhone/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointPhone"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Change Event","labelPlural":"Contact Point Phone Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointPhone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone History","labelPlural":"Contact Point Phone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointPhone","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Phone Share","labelPlural":"Contact Point Phone Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointPhoneShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointPhoneShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointPhoneShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointPhoneShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZY","label":"Contact + Point Type Consent","labelPlural":"Contact Point Type Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactPointTypeConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe","layouts":"/services/data/v58.0/sobjects/ContactPointTypeConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Change Event","labelPlural":"Contact Point Type Consent + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContactPointTypeConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent History","labelPlural":"Contact Point Type Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactPointTypeConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Point Type Consent Share","labelPlural":"Contact Point Type Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactPointTypeConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare/describe","sobject":"/services/data/v58.0/sobjects/ContactPointTypeConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tz","label":"Contact + Request","labelPlural":"Contact Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContactRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContactRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContactRequest/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequest/describe","layouts":"/services/data/v58.0/sobjects/ContactRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContactRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContactRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contact + Request Share","labelPlural":"Contact Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ContactRequestShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Contact","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03s","label":"Contact + Share","labelPlural":"Contact Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContactShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContactShare/{ID}","describe":"/services/data/v58.0/sobjects/ContactShare/describe","sobject":"/services/data/v58.0/sobjects/ContactShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03S","label":"Asset + File","labelPlural":"Asset Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentAsset/{ID}","describe":"/services/data/v58.0/sobjects/ContentAsset/describe","sobject":"/services/data/v58.0/sobjects/ContentAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05T","label":"Content + Body","labelPlural":"Content Bodies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentBody","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentBody/{ID}","describe":"/services/data/v58.0/sobjects/ContentBody/describe","sobject":"/services/data/v58.0/sobjects/ContentBody"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05D","label":"Content + Delivery","labelPlural":"Content Deliveries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistribution","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistribution/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistribution/describe","sobject":"/services/data/v58.0/sobjects/ContentDistribution"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05H","label":"Content + Delivery View","labelPlural":"Content Delivery Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDistributionView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDistributionView/{ID}","describe":"/services/data/v58.0/sobjects/ContentDistributionView/describe","sobject":"/services/data/v58.0/sobjects/ContentDistributionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"069","label":"Content + Document","labelPlural":"Content Documents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContentDocument","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocument/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocument/describe","layouts":"/services/data/v58.0/sobjects/ContentDocument/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocument"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Change Event","labelPlural":"Content Document Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"ContentDocument + Feed","labelPlural":"ContentDocument Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentFeed/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentDocument","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document History","labelPlural":"Content Document History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06A","label":"Content + Document Link","labelPlural":"Content Document Link","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentLink/describe","layouts":"/services/data/v58.0/sobjects/ContentDocumentLink/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentDocumentLink"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentDocumentLink","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Document Link Change Event","labelPlural":"Content Document Link Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentLinkChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentLinkChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"057","label":"Content + Document Subscription","labelPlural":"Content Document Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentDocumentSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentDocumentSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentDocumentSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentDocumentSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07H","label":"Content + Folder","labelPlural":"Content Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolder/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolder/describe","sobject":"/services/data/v58.0/sobjects/ContentFolder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Folder Item","labelPlural":"Content Folder Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentFolderItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentFolderItem/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderItem/describe","layouts":"/services/data/v58.0/sobjects/ContentFolderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentFolderItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07v","label":"Content + Folder Link","labelPlural":"Content Folder Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderLink","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderLink/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderLink/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07I","label":"Content + Folder Member","labelPlural":"Content Folder Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentFolderMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentFolderMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentFolderMember/describe","sobject":"/services/data/v58.0/sobjects/ContentFolderMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05V","label":"Content + Notification","labelPlural":"Content Notifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentNotification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentNotification/{ID}","describe":"/services/data/v58.0/sobjects/ContentNotification/describe","sobject":"/services/data/v58.0/sobjects/ContentNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05Q","label":"Content + Tag Subscription","labelPlural":"Content Tag Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentTagSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentTagSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentTagSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentTagSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05S","label":"Content + User Subscription","labelPlural":"Content User Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentUserSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentUserSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentUserSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentUserSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"068","label":"Content + Version","labelPlural":"Content Versions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentVersion/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentVersion/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersion/describe","layouts":"/services/data/v58.0/sobjects/ContentVersion/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentVersion"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version Change Event","labelPlural":"Content Version Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContentVersionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05C","label":"Content + Version Comment","labelPlural":"Content Version Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionComment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionComment/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionComment/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionComment"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContentVersion","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Content + Version History","labelPlural":"Content Version History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionHistory/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05J","label":"Content + Version Rating","labelPlural":"Content Version Ratings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentVersionRating","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentVersionRating/{ID}","describe":"/services/data/v58.0/sobjects/ContentVersionRating/describe","sobject":"/services/data/v58.0/sobjects/ContentVersionRating"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"058","label":"Library","labelPlural":"Libraries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspace","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspace/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspace/describe","layouts":"/services/data/v58.0/sobjects/ContentWorkspace/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContentWorkspace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"059","label":"Library + Document","labelPlural":"Library Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceDoc","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceDoc/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceDoc"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05A","label":"Library + Member","labelPlural":"Library Members","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceMember","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceMember/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceMember/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05P","label":"Library + Permission","labelPlural":"Library Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspacePermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspacePermission/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspacePermission/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspacePermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05R","label":"Content + Workspace Subscription","labelPlural":"Content Workspace Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContentWorkspaceSubscription","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/{ID}","describe":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription/describe","sobject":"/services/data/v58.0/sobjects/ContentWorkspaceSubscription"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"15z","label":"Context + Param Map","labelPlural":"Context Param Maps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContextParamMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContextParamMap/{ID}","describe":"/services/data/v58.0/sobjects/ContextParamMap/describe","sobject":"/services/data/v58.0/sobjects/ContextParamMap"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"800","label":"Contract","labelPlural":"Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Contract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Contract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Contract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Contract/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Contract/listviews","describe":"/services/data/v58.0/sobjects/Contract/describe","quickActions":"/services/data/v58.0/sobjects/Contract/quickActions","layouts":"/services/data/v58.0/sobjects/Contract/describe/layouts","sobject":"/services/data/v58.0/sobjects/Contract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Change Event","labelPlural":"Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02a","label":"Contract + Contact Role","labelPlural":"Contract Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ContractContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractContactRole/{ID}","describe":"/services/data/v58.0/sobjects/ContractContactRole/describe","layouts":"/services/data/v58.0/sobjects/ContractContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractContactRole"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Feed","labelPlural":"Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Contract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + History","labelPlural":"Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"811","label":"Contract + Line Item","labelPlural":"Contract Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineItem/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Change Event","labelPlural":"Contract Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item Feed","labelPlural":"Contract Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Item History","labelPlural":"Contract Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3lp","label":"Contract + Line Outcome","labelPlural":"Contract Line Outcomes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcome","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcome/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcome/describe","quickActions":"/services/data/v58.0/sobjects/ContractLineOutcome/quickActions","layouts":"/services/data/v58.0/sobjects/ContractLineOutcome/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcome"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7sD","label":"Contract + Line Outcome Data","labelPlural":"Contract Line Outcome Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ContractLineOutcomeData","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeData/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe","layouts":"/services/data/v58.0/sobjects/ContractLineOutcomeData/describe/layouts","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ContractLineOutcomeData","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Data Change Event","labelPlural":"Contract Line Outcome Data + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeDataChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeDataChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Feed","labelPlural":"Contract Line Outcome Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ContractLineOutcome","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome History","labelPlural":"Contract Line Outcome History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ContractLineOutcome","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Line Outcome Share","labelPlural":"Contract Line Outcome Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractLineOutcomeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/{ID}","describe":"/services/data/v58.0/sobjects/ContractLineOutcomeShare/describe","sobject":"/services/data/v58.0/sobjects/ContractLineOutcomeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Contract + Status Value","labelPlural":"Contract Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ContractStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ContractStatus/{ID}","describe":"/services/data/v58.0/sobjects/ContractStatus/describe","sobject":"/services/data/v58.0/sobjects/ContractStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dw","label":"Conversation","labelPlural":"Conversations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Conversation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Conversation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Conversation/{ID}","describe":"/services/data/v58.0/sobjects/Conversation/describe","layouts":"/services/data/v58.0/sobjects/Conversation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Conversation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zy","label":"Conversation + Entry","labelPlural":"Conversation Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationEntry/{ID}","describe":"/services/data/v58.0/sobjects/ConversationEntry/describe","sobject":"/services/data/v58.0/sobjects/ConversationEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ec","label":"Conversation + Participant","labelPlural":"Conversation Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ConversationParticipant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ConversationParticipant/{ID}","describe":"/services/data/v58.0/sobjects/ConversationParticipant/describe","sobject":"/services/data/v58.0/sobjects/ConversationParticipant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"074","label":"CORS + Allowed Origin List","labelPlural":"CORS Allowed Origins List","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CorsWhitelistEntry","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CorsWhitelistEntry/{ID}","describe":"/services/data/v58.0/sobjects/CorsWhitelistEntry/describe","sobject":"/services/data/v58.0/sobjects/CorsWhitelistEntry"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fi","label":"Credential + Stuffing Event","labelPlural":"Credential Stuffing Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/CredentialStuffingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/CredentialStuffingEvent/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fj","label":"Credential + Stuffing Event Store","labelPlural":"Credential Stuffing Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CredentialStuffingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/CredentialStuffingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CredentialStuffingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credential + Stuffing Event Store Feed","labelPlural":"Credential Stuffing Event Store + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CredentialStuffingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/CredentialStuffingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"50g","label":"Credit + Memo","labelPlural":"Credit Memos","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"CreditMemo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemo/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemo/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemo/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemo/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemo/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Feed","labelPlural":"Credit Memo Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemo","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo History","labelPlural":"Credit Memo History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4sF","label":"Credit + Memo Invoice Application","labelPlural":"Credit Memo Invoice Applications","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplication","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplication/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoInvApplication/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoInvApplication/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplication"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val CreditMemoInvApplication not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoInvApplication","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Invoice Application History","labelPlural":"Credit Memo Invoice Application History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoInvApplicationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoInvApplicationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9yx","label":"Credit + Memo Line","labelPlural":"Credit Memo Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/CreditMemoLine/describe","quickActions":"/services/data/v58.0/sobjects/CreditMemoLine/quickActions","layouts":"/services/data/v58.0/sobjects/CreditMemoLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/CreditMemoLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line Feed","labelPlural":"Credit Memo Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineFeed/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"CreditMemoLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Line History","labelPlural":"Credit Memo Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoLineHistory/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"CreditMemo","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Credit + Memo Share","labelPlural":"Credit Memo Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CreditMemoShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CreditMemoShare/{ID}","describe":"/services/data/v58.0/sobjects/CreditMemoShare/describe","sobject":"/services/data/v58.0/sobjects/CreditMemoShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08a","label":"Cron + Job","labelPlural":"Cron Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronJobDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronJobDetail/{ID}","describe":"/services/data/v58.0/sobjects/CronJobDetail/describe","sobject":"/services/data/v58.0/sobjects/CronJobDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08e","label":"Scheduled + Jobs","labelPlural":"Scheduled Jobs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CronTrigger","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CronTrigger/{ID}","describe":"/services/data/v58.0/sobjects/CronTrigger/describe","sobject":"/services/data/v58.0/sobjects/CronTrigger"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08y","label":"Trusted + URL","labelPlural":"Trusted URLs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CspTrustedSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CspTrustedSite/{ID}","describe":"/services/data/v58.0/sobjects/CspTrustedSite/describe","layouts":"/services/data/v58.0/sobjects/CspTrustedSite/describe/layouts","sobject":"/services/data/v58.0/sobjects/CspTrustedSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07W","label":"Custom + Brand","labelPlural":"Custom Brand","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrand","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrand/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrand/describe","sobject":"/services/data/v58.0/sobjects/CustomBrand"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07X","label":"Custom + Brand Asset","labelPlural":"Custom Brand Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomBrandAsset","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomBrandAsset/{ID}","describe":"/services/data/v58.0/sobjects/CustomBrandAsset/describe","sobject":"/services/data/v58.0/sobjects/CustomBrandAsset"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Ca","label":"Custom + Help Menu Item","labelPlural":"Custom Help Menu Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuItem/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Cx","label":"Custom + Help Menu Section","labelPlural":"Custom Help Menu Sections","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomHelpMenuSection","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomHelpMenuSection/{ID}","describe":"/services/data/v58.0/sobjects/CustomHelpMenuSection/describe","sobject":"/services/data/v58.0/sobjects/CustomHelpMenuSection"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XH","label":"Custom + HTTP Header","labelPlural":"Custom HTTP Headers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomHttpHeader","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomHttpHeader/{ID}","describe":"/services/data/v58.0/sobjects/CustomHttpHeader/describe","layouts":"/services/data/v58.0/sobjects/CustomHttpHeader/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomHttpHeader"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ML","label":"Custom + Notification Type","labelPlural":"Custom Notification Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomNotificationType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomNotificationType/{ID}","describe":"/services/data/v58.0/sobjects/CustomNotificationType/describe","sobject":"/services/data/v58.0/sobjects/CustomNotificationType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3NA","label":"Custom + Object Usage By User License Metric","labelPlural":"Custom Object Usage By + User License Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomObjectUserLicenseMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/{ID}","describe":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics/describe","sobject":"/services/data/v58.0/sobjects/CustomObjectUserLicenseMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CP","label":"Custom + Permission","labelPlural":"Custom Permissions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermission","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermission/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermission/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermission/describe","layouts":"/services/data/v58.0/sobjects/CustomPermission/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermission"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PD","label":"Custom + Permission Dependency","labelPlural":"Custom Permission Dependencies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"CustomPermissionDependency","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/CustomPermissionDependency/{ID}","describe":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe","layouts":"/services/data/v58.0/sobjects/CustomPermissionDependency/describe/layouts","sobject":"/services/data/v58.0/sobjects/CustomPermissionDependency"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0o6","label":"Customer","labelPlural":"Customers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Customer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Customer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Customer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Customer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Customer/describe","layouts":"/services/data/v58.0/sobjects/Customer/describe/layouts","sobject":"/services/data/v58.0/sobjects/Customer"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Customer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Customer + Share","labelPlural":"Customer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"CustomerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/CustomerShare/{ID}","describe":"/services/data/v58.0/sobjects/CustomerShare/describe","sobject":"/services/data/v58.0/sobjects/CustomerShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06E","label":"D&B + Company","labelPlural":"D&B Companies","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DandBCompany","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01Z","label":"Dashboard","labelPlural":"Dashboards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Dashboard","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Dashboard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Dashboard/{ID}","listviews":"/services/data/v58.0/sobjects/Dashboard/listviews","describe":"/services/data/v58.0/sobjects/Dashboard/describe","layouts":"/services/data/v58.0/sobjects/Dashboard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Dashboard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01a","label":"Dashboard + Component","labelPlural":"Dashboard Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponent/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponent/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"DashboardComponent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Component Feed","labelPlural":"Dashboard Component Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardComponentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardComponentFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardComponentFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardComponentFeed"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Dashboard","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Dashboard + Feed","labelPlural":"Dashboard Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DashboardFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DashboardFeed/{ID}","describe":"/services/data/v58.0/sobjects/DashboardFeed/describe","sobject":"/services/data/v58.0/sobjects/DashboardFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03Q","label":"Data + Assessment Field Metric","labelPlural":"Data Assessment Field Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentFieldMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentFieldMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03P","label":"Data + Assessment Metric","labelPlural":"Data Assessment Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03R","label":"Data + Assessment Field Value Metric","labelPlural":"Data Assessment Field Value + Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataAssessmentValueMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/{ID}","describe":"/services/data/v58.0/sobjects/DataAssessmentValueMetric/describe","sobject":"/services/data/v58.0/sobjects/DataAssessmentValueMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1e5","label":"Data + Object Data Change Event","labelPlural":"Data Object Data Change Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataObjectDataChgEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DataObjectDataChgEvent/describe","sobject":"/services/data/v58.0/sobjects/DataObjectDataChgEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05a","label":"Data + Statistics","labelPlural":"Data Statistics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataStatistics","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataStatistics/{ID}","describe":"/services/data/v58.0/sobjects/DataStatistics/describe","sobject":"/services/data/v58.0/sobjects/DataStatistics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4dt","label":"Data + Type","labelPlural":"Data Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataType/{ID}","describe":"/services/data/v58.0/sobjects/DataType/describe","sobject":"/services/data/v58.0/sobjects/DataType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZT","label":"Data + Use Legal Basis","labelPlural":"Data Use Legal Bases","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUseLegalBasis","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasis/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe","layouts":"/services/data/v58.0/sobjects/DataUseLegalBasis/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasis"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUseLegalBasis","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis History","labelPlural":"Data Use Legal Basis History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUseLegalBasis","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Legal Basis Share","labelPlural":"Data Use Legal Basis Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUseLegalBasisShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUseLegalBasisShare/describe","sobject":"/services/data/v58.0/sobjects/DataUseLegalBasisShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ZW","label":"Data + Use Purpose","labelPlural":"Data Use Purposes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DataUsePurpose","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DataUsePurpose/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DataUsePurpose/describe","quickActions":"/services/data/v58.0/sobjects/DataUsePurpose/quickActions","layouts":"/services/data/v58.0/sobjects/DataUsePurpose/describe/layouts","sobject":"/services/data/v58.0/sobjects/DataUsePurpose"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"DataUsePurpose","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose History","labelPlural":"Data Use Purpose History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeHistory/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeHistory/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"DataUsePurpose","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Data + Use Purpose Share","labelPlural":"Data Use Purpose Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DataUsePurposeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DataUsePurposeShare/{ID}","describe":"/services/data/v58.0/sobjects/DataUsePurposeShare/describe","sobject":"/services/data/v58.0/sobjects/DataUsePurposeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07m","label":"Data.com + Address","labelPlural":"Data.com Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudAddress","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudAddress/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudAddress/describe","sobject":"/services/data/v58.0/sobjects/DatacloudAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09K","label":"Data.com + Company","labelPlural":"Data.com Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08C","label":"Data.com + Contact","labelPlural":"Data.com Contacts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudContact","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudContact/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudContact/describe","sobject":"/services/data/v58.0/sobjects/DatacloudContact"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09N","label":"D&B + Company","labelPlural":"DandB Companies","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DatacloudDandBCompany","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DatacloudDandBCompany/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe","layouts":"/services/data/v58.0/sobjects/DatacloudDandBCompany/describe/layouts","sobject":"/services/data/v58.0/sobjects/DatacloudDandBCompany"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09O","label":"Data.com + Owned Entity","labelPlural":"Data.com Owned Entity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudOwnedEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudOwnedEntity/describe","sobject":"/services/data/v58.0/sobjects/DatacloudOwnedEntity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09F","label":"Data.com + Usage","labelPlural":"Data.com Usage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DatacloudPurchaseUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/{ID}","describe":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage/describe","sobject":"/services/data/v58.0/sobjects/DatacloudPurchaseUsage"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Declined + Event Relation","labelPlural":"Declined Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeclinedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeclinedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/DeclinedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/DeclinedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00C","label":"Recycle + Bin Item","labelPlural":"Recycle Bin","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DeleteEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DeleteEvent/{ID}","describe":"/services/data/v58.0/sobjects/DeleteEvent/describe","sobject":"/services/data/v58.0/sobjects/DeleteEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DS","label":"Digital + Signature","labelPlural":"Digital Signatures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignature","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignature/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DigitalSignature/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DigitalSignature/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignature"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"DigitalSignature","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Digital + Signature Change Event","labelPlural":"Digital Signature Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DigitalSignatureChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/DigitalSignatureChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1DW","label":"Digital + Wallet","labelPlural":"Digital Wallets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DigitalWallet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DigitalWallet/{ID}","describe":"/services/data/v58.0/sobjects/DigitalWallet/describe","quickActions":"/services/data/v58.0/sobjects/DigitalWallet/quickActions","layouts":"/services/data/v58.0/sobjects/DigitalWallet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DigitalWallet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"015","label":"Document","labelPlural":"Documents","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Document","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Document/{ID}","describe":"/services/data/v58.0/sobjects/Document/describe","sobject":"/services/data/v58.0/sobjects/Document"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"05X","label":"Document + Entity Map","labelPlural":"Document Entity Map","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DocumentAttachmentMap","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DocumentAttachmentMap/{ID}","describe":"/services/data/v58.0/sobjects/DocumentAttachmentMap/describe","sobject":"/services/data/v58.0/sobjects/DocumentAttachmentMap"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I4","label":"Domain","labelPlural":"Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Domain","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Domain/{ID}","describe":"/services/data/v58.0/sobjects/Domain/describe","sobject":"/services/data/v58.0/sobjects/Domain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jf","label":"Custom + URL","labelPlural":"Custom URLs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"DomainSite","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/DomainSite/{ID}","describe":"/services/data/v58.0/sobjects/DomainSite/describe","sobject":"/services/data/v58.0/sobjects/DomainSite"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GL","label":"Duplicate + Record Item","labelPlural":"Duplicate Record Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"DuplicateRecordItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GK","label":"Duplicate + Record Set","labelPlural":"Duplicate Record Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRecordSet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRecordSet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRecordSet/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRecordSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Bm","label":"Duplicate + Rule","labelPlural":"Duplicate Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"DuplicateRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/DuplicateRule/{ID}","describe":"/services/data/v58.0/sobjects/DuplicateRule/describe","layouts":"/services/data/v58.0/sobjects/DuplicateRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/DuplicateRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06F","label":"EmailCapture","labelPlural":"Email + Captures","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailCapture","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailCapture/{ID}","describe":"/services/data/v58.0/sobjects/EmailCapture/describe","sobject":"/services/data/v58.0/sobjects/EmailCapture"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T6","label":"Email + Domain Filter","labelPlural":"Email Domain Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainFilter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainFilter/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainFilter/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09P","label":"Email + Domain Key","labelPlural":"Email Domain Keys","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailDomainKey","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailDomainKey/{ID}","describe":"/services/data/v58.0/sobjects/EmailDomainKey/describe","sobject":"/services/data/v58.0/sobjects/EmailDomainKey"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"02s","label":"Email + Message","labelPlural":"Email Messages","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EmailMessage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailMessage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EmailMessage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EmailMessage/describe","quickActions":"/services/data/v58.0/sobjects/EmailMessage/quickActions","layouts":"/services/data/v58.0/sobjects/EmailMessage/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailMessage"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailMessage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Message Change Event","labelPlural":"Email Message Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailMessageChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CZ","label":"Email + Message Relation","labelPlural":"Email Message Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailMessageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailMessageRelation/{ID}","describe":"/services/data/v58.0/sobjects/EmailMessageRelation/describe","sobject":"/services/data/v58.0/sobjects/EmailMessageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"26Z","label":"Email + Relay","labelPlural":"Email Relay","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailRelay","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailRelay/{ID}","describe":"/services/data/v58.0/sobjects/EmailRelay/describe","sobject":"/services/data/v58.0/sobjects/EmailRelay"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"093","label":"Email + Services Address","labelPlural":"Email Services Address","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesAddress/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesAddress/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"091","label":"Email + Service","labelPlural":"Email Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailServicesFunction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailServicesFunction/{ID}","describe":"/services/data/v58.0/sobjects/EmailServicesFunction/describe","sobject":"/services/data/v58.0/sobjects/EmailServicesFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"018","label":"Email + Status","labelPlural":"Email Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailStatus","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailStatus/{ID}","describe":"/services/data/v58.0/sobjects/EmailStatus/describe","sobject":"/services/data/v58.0/sobjects/EmailStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00X","label":"Email + Template","labelPlural":"Email Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EmailTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EmailTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EmailTemplate/describe","layouts":"/services/data/v58.0/sobjects/EmailTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/EmailTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EmailTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Email + Template Change Event","labelPlural":"Email Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmailTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EmailTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lq","label":"Embedded + Service","labelPlural":"Embedded Services","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceDetail/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uu","label":"Embedded + Service Label","labelPlural":"Embedded Service Labels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EmbeddedServiceLabel","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/{ID}","describe":"/services/data/v58.0/sobjects/EmbeddedServiceLabel/describe","sobject":"/services/data/v58.0/sobjects/EmbeddedServiceLabel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eF","label":"Engagement + Channel Type","labelPlural":"Engagement Channel Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EngagementChannelType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EngagementChannelType/describe","quickActions":"/services/data/v58.0/sobjects/EngagementChannelType/quickActions","layouts":"/services/data/v58.0/sobjects/EngagementChannelType/describe/layouts","sobject":"/services/data/v58.0/sobjects/EngagementChannelType"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Feed","labelPlural":"Engagement Channel Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EngagementChannelType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type History","labelPlural":"Engagement Channel Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"EngagementChannelType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Engagement + Channel Type Share","labelPlural":"Engagement Channel Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EngagementChannelTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/EngagementChannelTypeShare/describe","sobject":"/services/data/v58.0/sobjects/EngagementChannelTypeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rn","label":"Enhanced + Letterhead","labelPlural":"Enhanced Letterheads","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"EnhancedLetterhead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterhead/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe","layouts":"/services/data/v58.0/sobjects/EnhancedLetterhead/describe/layouts","sobject":"/services/data/v58.0/sobjects/EnhancedLetterhead"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EnhancedLetterhead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Enhanced + Letterhead Feed","labelPlural":"Enhanced Letterhead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EnhancedLetterheadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/{ID}","describe":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed/describe","sobject":"/services/data/v58.0/sobjects/EnhancedLetterheadFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"550","label":"Entitlement","labelPlural":"Entitlements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Entitlement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Entitlement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Entitlement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Entitlement/describe","layouts":"/services/data/v58.0/sobjects/Entitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/Entitlement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Change Event","labelPlural":"Entitlement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EntitlementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EntitlementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EntitlementChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E7","label":"Entitlement + Contact","labelPlural":"Entitlement Contacts","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntitlementContact","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntitlementContact/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementContact/describe","layouts":"/services/data/v58.0/sobjects/EntitlementContact/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntitlementContact"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + Feed","labelPlural":"Entitlement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementFeed/describe","sobject":"/services/data/v58.0/sobjects/EntitlementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Entitlement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Entitlement + History","labelPlural":"Entitlement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementHistory/describe","sobject":"/services/data/v58.0/sobjects/EntitlementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"551","label":"Entitlement + Template","labelPlural":"Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/EntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/EntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4ie","label":"Entity + Definition","labelPlural":"Entity Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityDefinition/{ID}","describe":"/services/data/v58.0/sobjects/EntityDefinition/describe","sobject":"/services/data/v58.0/sobjects/EntityDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1EM","label":"Object + Milestone","labelPlural":"Object Milestones","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"EntityMilestone","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/EntityMilestone/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/EntityMilestone/describe","quickActions":"/services/data/v58.0/sobjects/EntityMilestone/quickActions","layouts":"/services/data/v58.0/sobjects/EntityMilestone/describe/layouts","sobject":"/services/data/v58.0/sobjects/EntityMilestone"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone Feed","labelPlural":"Object Milestone Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneFeed/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneFeed/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"EntityMilestone","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Object + Milestone History","labelPlural":"Object Milestone History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityMilestoneHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityMilestoneHistory/{ID}","describe":"/services/data/v58.0/sobjects/EntityMilestoneHistory/describe","sobject":"/services/data/v58.0/sobjects/EntityMilestoneHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nv","label":"Entity + Particle","labelPlural":"Entity Particles","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntityParticle","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntityParticle/{ID}","describe":"/services/data/v58.0/sobjects/EntityParticle/describe","sobject":"/services/data/v58.0/sobjects/EntityParticle"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E8","label":"Entity + Subscription","labelPlural":"Entity Subscriptions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EntitySubscription","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EntitySubscription/{ID}","describe":"/services/data/v58.0/sobjects/EntitySubscription/describe","sobject":"/services/data/v58.0/sobjects/EntitySubscription"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Error_Log__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Log","labelPlural":"Change Event: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Error_Log__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Error Log","labelPlural":"Share: Error Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Error_Log__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Error_Log__Share/{ID}","describe":"/services/data/v58.0/sobjects/Error_Log__Share/describe","sobject":"/services/data/v58.0/sobjects/Error_Log__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1M","label":"Error + Log","labelPlural":"Connection Error Log","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Error_Log__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Error_Log__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Error_Log__c/describe","quickActions":"/services/data/v58.0/sobjects/Error_Log__c/quickActions","layouts":"/services/data/v58.0/sobjects/Error_Log__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Error_Log__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00U","label":"Event","labelPlural":"Events","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Event","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Event/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Event/{ID}","eventSeriesUpdates":"/services/data/v58.0/sobjects/Event/{ID}/fromThisEventOnwards","describe":"/services/data/v58.0/sobjects/Event/describe","quickActions":"/services/data/v58.0/sobjects/Event/quickActions","layouts":"/services/data/v58.0/sobjects/Event/describe/layouts","sobject":"/services/data/v58.0/sobjects/Event"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cd","label":"Platform + Event Subscription","labelPlural":"Platform Event Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventBusSubscriber","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventBusSubscriber/{ID}","describe":"/services/data/v58.0/sobjects/EventBusSubscriber/describe","sobject":"/services/data/v58.0/sobjects/EventBusSubscriber"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Change Event","labelPlural":"Event Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Event","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Feed","labelPlural":"Event Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventFeed/{ID}","describe":"/services/data/v58.0/sobjects/EventFeed/describe","sobject":"/services/data/v58.0/sobjects/EventFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AT","label":"Event + Log File","labelPlural":"Event Log Files","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventLogFile","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventLogFile/{ID}","describe":"/services/data/v58.0/sobjects/EventLogFile/describe","sobject":"/services/data/v58.0/sobjects/EventLogFile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0RE","label":"Event + Relation","labelPlural":"Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelation/{ID}","describe":"/services/data/v58.0/sobjects/EventRelation/describe","sobject":"/services/data/v58.0/sobjects/EventRelation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relation Change Event","labelPlural":"Event Relation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k2","label":"Event + Relay Config","labelPlural":"Event Relay Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfig/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayConfig/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfig"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"EventRelayConfig","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Event + Relay Config Change Event","labelPlural":"Event Relay Config Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayConfigChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/EventRelayConfigChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7k4","label":"Event + Relay Feedback","labelPlural":"Event Relay Feedbacks","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"EventRelayFeedback","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/EventRelayFeedback/{ID}","describe":"/services/data/v58.0/sobjects/EventRelayFeedback/describe","sobject":"/services/data/v58.0/sobjects/EventRelayFeedback"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1V4","label":"Expense","labelPlural":"Expenses","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Expense","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Expense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Expense/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Expense/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Expense/describe","quickActions":"/services/data/v58.0/sobjects/Expense/quickActions","layouts":"/services/data/v58.0/sobjects/Expense/describe/layouts","sobject":"/services/data/v58.0/sobjects/Expense"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Change Event","labelPlural":"Expense Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ExpenseChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ExpenseChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ExpenseChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Feed","labelPlural":"Expense Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Expense","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + History","labelPlural":"Expense History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6g5","label":"Expense + Report","labelPlural":"Expense Reports","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReport/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExpenseReport/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReport/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReport/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReport"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3zl","label":"Expense + Report Entry","labelPlural":"Expense Report Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ExpenseReportEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntry/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe","quickActions":"/services/data/v58.0/sobjects/ExpenseReportEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ExpenseReportEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntry"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry Feed","labelPlural":"Expense Report Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReportEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Entry History","labelPlural":"Expense Report Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Feed","labelPlural":"Expense Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ExpenseReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report History","labelPlural":"Expense Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExpenseReport","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Report Share","labelPlural":"Expense Report Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseReportShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseReportShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseReportShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseReportShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Expense","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Expense + Share","labelPlural":"Expense Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpenseShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpenseShare/{ID}","describe":"/services/data/v58.0/sobjects/ExpenseShare/describe","sobject":"/services/data/v58.0/sobjects/ExpenseShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1GS","label":"ExpressionFilter","labelPlural":"ExpressionFilters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilter","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilter/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilter/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8BM","label":"ExpressionFilterCriteria","labelPlural":"ExpressionFilterCriteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionFilterCriteria/describe","sobject":"/services/data/v58.0/sobjects/ExpressionFilterCriteria"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pz","label":"Expression + Set View","labelPlural":"Expression Set Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExpressionSetView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExpressionSetView/{ID}","describe":"/services/data/v58.0/sobjects/ExpressionSetView/describe","sobject":"/services/data/v58.0/sobjects/ExpressionSetView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XC","label":"External + Data Source","labelPlural":"External Data Sources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ExternalDataSource","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSource/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSource/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6Ay","label":"External + Data Source Descriptor","labelPlural":"External Data Source Descriptors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataSrcDescriptor","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataSrcDescriptor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XU","label":"External + Data User Authentication","labelPlural":"External Data User Authentications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalDataUserAuth","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalDataUserAuth/{ID}","describe":"/services/data/v58.0/sobjects/ExternalDataUserAuth/describe","sobject":"/services/data/v58.0/sobjects/ExternalDataUserAuth"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0AY","label":"External + Event","labelPlural":"External Events","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ExternalEvent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ExternalEvent/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEvent/describe","layouts":"/services/data/v58.0/sobjects/ExternalEvent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ExternalEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08N","label":"External + Event Mapping","labelPlural":"External Event Mappings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMapping","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMapping/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ExternalEventMapping/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ExternalEventMapping/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMapping"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ExternalEventMapping","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"External + Event Mapping Share","labelPlural":"External Event Mapping Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ExternalEventMappingShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ExternalEventMappingShare/{ID}","describe":"/services/data/v58.0/sobjects/ExternalEventMappingShare/describe","sobject":"/services/data/v58.0/sobjects/ExternalEventMappingShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08M","label":"Feed + Attachment","labelPlural":"Feed Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedAttachment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedAttachment/{ID}","describe":"/services/data/v58.0/sobjects/FeedAttachment/describe","sobject":"/services/data/v58.0/sobjects/FeedAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D7","label":"Feed + Comment","labelPlural":"Feed Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedComment/{ID}","describe":"/services/data/v58.0/sobjects/FeedComment/describe","sobject":"/services/data/v58.0/sobjects/FeedComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D5","label":"Feed + Item","labelPlural":"Feed Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FeedItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedItem/{ID}","describe":"/services/data/v58.0/sobjects/FeedItem/describe","quickActions":"/services/data/v58.0/sobjects/FeedItem/quickActions","layouts":"/services/data/v58.0/sobjects/FeedItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FeedItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0I0","label":"Feed + Like","labelPlural":"Feed Likes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedLike","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedLike/{ID}","describe":"/services/data/v58.0/sobjects/FeedLike/describe","sobject":"/services/data/v58.0/sobjects/FeedLike"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09A","label":"Feed + Poll Choice","labelPlural":"Feed Poll Choices","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollChoice","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollChoice/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollChoice/describe","sobject":"/services/data/v58.0/sobjects/FeedPollChoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09B","label":"Feed + Poll Vote","labelPlural":"Feed Poll Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedPollVote","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedPollVote/{ID}","describe":"/services/data/v58.0/sobjects/FeedPollVote/describe","sobject":"/services/data/v58.0/sobjects/FeedPollVote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08U","label":"Feed + Revision","labelPlural":"Feed Revisions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedRevision","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedRevision/{ID}","describe":"/services/data/v58.0/sobjects/FeedRevision/describe","sobject":"/services/data/v58.0/sobjects/FeedRevision"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QJ","label":"Feed + Signal","labelPlural":"Feed Signals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedSignal","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedSignal/{ID}","describe":"/services/data/v58.0/sobjects/FeedSignal/describe","sobject":"/services/data/v58.0/sobjects/FeedSignal"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D6","label":"Feed + Tracked Change","labelPlural":"Feed Tracked Changes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FeedTrackedChange","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FeedTrackedChange/{ID}","describe":"/services/data/v58.0/sobjects/FeedTrackedChange/describe","sobject":"/services/data/v58.0/sobjects/FeedTrackedChange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fe","label":"Field + Definition","labelPlural":"Field Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldDefinition/{ID}","describe":"/services/data/v58.0/sobjects/FieldDefinition/describe","sobject":"/services/data/v58.0/sobjects/FieldDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01k","label":"Field + Permissions","labelPlural":"Field Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldPermissions/{ID}","describe":"/services/data/v58.0/sobjects/FieldPermissions/describe","sobject":"/services/data/v58.0/sobjects/FieldPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Security Classification","labelPlural":"Field Security Classifications","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldSecurityClassification","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldSecurityClassification/{ID}","describe":"/services/data/v58.0/sobjects/FieldSecurityClassification/describe","sobject":"/services/data/v58.0/sobjects/FieldSecurityClassification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mf","label":"Field + Service Mobile Settings","labelPlural":"Field Service Mobile Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe","layouts":"/services/data/v58.0/sobjects/FieldServiceMobileSettings/describe/layouts","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettings"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FieldServiceMobileSettings","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Field + Service Mobile Settings Change Event","labelPlural":"Field Service Mobile + Settings Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceMobileSettingsChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceMobileSettingsChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UJ","label":"Field + Service Org Settings","labelPlural":"Field Service Org Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FieldServiceOrgSettings","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/{ID}","describe":"/services/data/v58.0/sobjects/FieldServiceOrgSettings/describe","sobject":"/services/data/v58.0/sobjects/FieldServiceOrgSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0vI","label":"File + Event","labelPlural":"File Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FileEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FileEvent/describe","sobject":"/services/data/v58.0/sobjects/FileEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0wg","label":"File + Event Store","labelPlural":"File Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileEventStore/{ID}","describe":"/services/data/v58.0/sobjects/FileEventStore/describe","sobject":"/services/data/v58.0/sobjects/FileEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06h","label":"FileSearchActivity","labelPlural":"File + Search Activity","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FileSearchActivity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FileSearchActivity/{ID}","describe":"/services/data/v58.0/sobjects/FileSearchActivity/describe","sobject":"/services/data/v58.0/sobjects/FileSearchActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2kA","label":"Finance + Balance Snapshot","labelPlural":"Finance Balance Snapshots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceBalanceSnapshot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe","quickActions":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceBalanceSnapshot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Change Event","labelPlural":"Finance Balance Snapshot Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceBalanceSnapshot","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Balance Snapshot Share","labelPlural":"Finance Balance Snapshot Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceBalanceSnapshotShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceBalanceSnapshotShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0n3","label":"Finance + Transaction","labelPlural":"Finance Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FinanceTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FinanceTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FinanceTransaction/describe","quickActions":"/services/data/v58.0/sobjects/FinanceTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/FinanceTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/FinanceTransaction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"FinanceTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Change Event","labelPlural":"Finance Transaction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FinanceTransaction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Finance + Transaction Share","labelPlural":"Finance Transaction Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FinanceTransactionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FinanceTransactionShare/{ID}","describe":"/services/data/v58.0/sobjects/FinanceTransactionShare/describe","sobject":"/services/data/v58.0/sobjects/FinanceTransactionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"022","label":"Fiscal + Year Settings","labelPlural":"Fiscal Year Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FiscalYearSettings","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FiscalYearSettings/{ID}","describe":"/services/data/v58.0/sobjects/FiscalYearSettings/describe","sobject":"/services/data/v58.0/sobjects/FiscalYearSettings"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06i","label":"Flex + Queue Item","labelPlural":"Flex Queue Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlexQueueItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlexQueueItem/{ID}","describe":"/services/data/v58.0/sobjects/FlexQueueItem/describe","sobject":"/services/data/v58.0/sobjects/FlexQueueItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3dd","label":"Flow + Definition","labelPlural":"Flow Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowDefinitionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowDefinitionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowDefinitionView/describe","sobject":"/services/data/v58.0/sobjects/FlowDefinitionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0eC","label":"Flow + Execution Error Event","labelPlural":"Flow Execution Error Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowExecutionErrorEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowExecutionErrorEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fo","label":"Flow + Interview","labelPlural":"Flow Interviews","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowInterview","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowInterview/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowInterview/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterview/describe","layouts":"/services/data/v58.0/sobjects/FlowInterview/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowInterview"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8gZ","label":"Flow + Interview Log","labelPlural":"Flow Interview Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLog/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLog/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f6","label":"Flow + Interview Log Entry","labelPlural":"Flow Interview Log Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogEntry/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogEntry"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterviewLog","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Log Share","labelPlural":"Flow Interview Log Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewLogShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewLogShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewLogShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewLogShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowInterview","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Interview Share","labelPlural":"Flow Interview Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowInterviewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowInterviewShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowInterviewShare/describe","sobject":"/services/data/v58.0/sobjects/FlowInterviewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jo","label":"Orchestration + Event","labelPlural":"Orchestration Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/eventSchema","describe":"/services/data/v58.0/sobjects/FlowOrchestrationEvent/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jE","label":"Orchestration + Run","labelPlural":"Orchestration Runs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Run Share","labelPlural":"Orchestration Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jF","label":"Orchestration + Stage Run","labelPlural":"Orchestration Stage Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStageInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Stage Run Share","labelPlural":"Orchestration Stage Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStageInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStageInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jL","label":"Orchestration + Step Run","labelPlural":"Orchestration Step Runs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstance","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstance"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationStepInstance","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Step Run Share","labelPlural":"Orchestration Step Run Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationStepInstanceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationStepInstanceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jf","label":"Orchestration + Work Item","labelPlural":"Orchestration Work Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"FlowOrchestrationWorkItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe","layouts":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItem"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowOrchestrationWorkItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Orchestration + Work Item Share","labelPlural":"Orchestration Work Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowOrchestrationWorkItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare/describe","sobject":"/services/data/v58.0/sobjects/FlowOrchestrationWorkItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31z","label":"Flow + Record Relation","labelPlural":"Flow Record Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowRecordRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowRecordRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowRecordRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowRecordRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"31y","label":"Flow + Interview Stage Relation","labelPlural":"Flow Interview Stage Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowStageRelation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowStageRelation/{ID}","describe":"/services/data/v58.0/sobjects/FlowStageRelation/describe","sobject":"/services/data/v58.0/sobjects/FlowStageRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2hU","label":"Flow + Test Result","labelPlural":"Flow Test Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResult/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResult/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResult"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"FlowTestResult","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Flow + Test Result Share","labelPlural":"Flow Test Result Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestResultShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestResultShare/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestResultShare/describe","sobject":"/services/data/v58.0/sobjects/FlowTestResultShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YB","label":"Flow + Test View","labelPlural":"Flow Test Views","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowTestView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowTestView/{ID}","describe":"/services/data/v58.0/sobjects/FlowTestView/describe","sobject":"/services/data/v58.0/sobjects/FlowTestView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3ad","label":"Flow + Variable","labelPlural":"Flow Variables","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVariableView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVariableView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVariableView/describe","sobject":"/services/data/v58.0/sobjects/FlowVariableView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3vd","label":"Flow + Version","labelPlural":"Flow Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FlowVersionView","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FlowVersionView/{ID}","describe":"/services/data/v58.0/sobjects/FlowVersionView/describe","sobject":"/services/data/v58.0/sobjects/FlowVersionView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00l","label":"Folder","labelPlural":"Folders","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Folder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Folder/{ID}","describe":"/services/data/v58.0/sobjects/Folder/describe","sobject":"/services/data/v58.0/sobjects/Folder"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Foldered + Content Document","labelPlural":"Foldered Content Documents","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FolderedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FolderedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/FolderedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/FolderedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kn","label":"Formula + Function","labelPlural":"Formula Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunction/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunction/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fE","label":"Formula + Context Function","labelPlural":"Formula Context Functions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionAllowedType","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionAllowedType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kh","label":"Formula + Function Category","labelPlural":"Formula Function Categories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"FormulaFunctionCategory","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/FormulaFunctionCategory/{ID}","describe":"/services/data/v58.0/sobjects/FormulaFunctionCategory/describe","sobject":"/services/data/v58.0/sobjects/FormulaFunctionCategory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06d","label":"Setting + Granted By License","labelPlural":"Settings Granted By Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GrantedByLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GrantedByLicense/{ID}","describe":"/services/data/v58.0/sobjects/GrantedByLicense/describe","sobject":"/services/data/v58.0/sobjects/GrantedByLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00G","label":"Group","labelPlural":"Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Group","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Group/{ID}","describe":"/services/data/v58.0/sobjects/Group/describe","sobject":"/services/data/v58.0/sobjects/Group"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"011","label":"Group + Member","labelPlural":"Group Member","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"GroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GroupMember/{ID}","describe":"/services/data/v58.0/sobjects/GroupMember/describe","sobject":"/services/data/v58.0/sobjects/GroupMember"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1gp","label":"Gateway + Provider Payment Method Type","labelPlural":"Gateway Provider Payment Method + Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"GtwyProvPaymentMethodType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/{ID}","describe":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType/describe","sobject":"/services/data/v58.0/sobjects/GtwyProvPaymentMethodType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C0","label":"Holiday","labelPlural":"Holidays","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Holiday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Holiday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Holiday/{ID}","describe":"/services/data/v58.0/sobjects/Holiday/describe","layouts":"/services/data/v58.0/sobjects/Holiday/describe/layouts","sobject":"/services/data/v58.0/sobjects/Holiday"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9s4","label":"IP + Address Range","labelPlural":"IP Address Ranges","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"IPAddressRange","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/IPAddressRange/{ID}","describe":"/services/data/v58.0/sobjects/IPAddressRange/describe","layouts":"/services/data/v58.0/sobjects/IPAddressRange/describe/layouts","sobject":"/services/data/v58.0/sobjects/IPAddressRange"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09k","label":"Icon + Definition","labelPlural":"Icon Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IconDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IconDefinition/{ID}","describe":"/services/data/v58.0/sobjects/IconDefinition/describe","sobject":"/services/data/v58.0/sobjects/IconDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"087","label":"Idea","labelPlural":"Ideas","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Idea","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Idea/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Idea/{ID}","describe":"/services/data/v58.0/sobjects/Idea/describe","layouts":"/services/data/v58.0/sobjects/Idea/describe/layouts","sobject":"/services/data/v58.0/sobjects/Idea"}},{"activateable":false,"associateEntityType":"Comment","associateParentEntity":"Idea","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00a","label":"Idea + Comment","labelPlural":"Idea Comments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdeaComment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdeaComment/{ID}","describe":"/services/data/v58.0/sobjects/IdeaComment/describe","sobject":"/services/data/v58.0/sobjects/IdeaComment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0k8","label":"Identity + Provider Event Store","labelPlural":"Identity Provider Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityProviderEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityProviderEventStore/{ID}","describe":"/services/data/v58.0/sobjects/IdentityProviderEventStore/describe","sobject":"/services/data/v58.0/sobjects/IdentityProviderEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jx","label":"Identity + Verification Event","labelPlural":"Identity Verification Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdentityVerificationEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdentityVerificationEvent/{ID}","describe":"/services/data/v58.0/sobjects/IdentityVerificationEvent/describe","sobject":"/services/data/v58.0/sobjects/IdentityVerificationEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yu","label":"Identity + Provider Event Log","labelPlural":"Identity Event Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IdpEventLog","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IdpEventLog/{ID}","describe":"/services/data/v58.0/sobjects/IdpEventLog/describe","sobject":"/services/data/v58.0/sobjects/IdpEventLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6TS","label":"Trusted + Domain for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/IframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/IframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4YL","label":"Image","labelPlural":"Images","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Image","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Image/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Image/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Image/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Image/describe","quickActions":"/services/data/v58.0/sobjects/Image/quickActions","layouts":"/services/data/v58.0/sobjects/Image/describe/layouts","sobject":"/services/data/v58.0/sobjects/Image"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Feed","labelPlural":"Image Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ImageFeed/describe","sobject":"/services/data/v58.0/sobjects/ImageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Image","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + History","labelPlural":"Image History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ImageHistory/describe","sobject":"/services/data/v58.0/sobjects/ImageHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Image","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Image + Share","labelPlural":"Image Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ImageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ImageShare/{ID}","describe":"/services/data/v58.0/sobjects/ImageShare/describe","sobject":"/services/data/v58.0/sobjects/ImageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PK","label":"Individual","labelPlural":"Individuals","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Individual","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Individual/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Individual/{ID}","describe":"/services/data/v58.0/sobjects/Individual/describe","quickActions":"/services/data/v58.0/sobjects/Individual/quickActions","layouts":"/services/data/v58.0/sobjects/Individual/describe/layouts","sobject":"/services/data/v58.0/sobjects/Individual"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + Change Event","labelPlural":"Individual Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/IndividualChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/IndividualChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/IndividualChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Individual","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Individual + History","labelPlural":"Individual History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualHistory/{ID}","describe":"/services/data/v58.0/sobjects/IndividualHistory/describe","sobject":"/services/data/v58.0/sobjects/IndividualHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Individual","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0T5","label":"Individual + Share","labelPlural":"Individual Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"IndividualShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/IndividualShare/{ID}","describe":"/services/data/v58.0/sobjects/IndividualShare/describe","sobject":"/services/data/v58.0/sobjects/IndividualShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0El","label":"Installed + Mobile App","labelPlural":"Installed Mobile Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InstalledMobileApp","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InstalledMobileApp/{ID}","describe":"/services/data/v58.0/sobjects/InstalledMobileApp/describe","sobject":"/services/data/v58.0/sobjects/InstalledMobileApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3tt","label":"Invoice","labelPlural":"Invoices","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Invoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Invoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Invoice/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Invoice/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Invoice/describe","quickActions":"/services/data/v58.0/sobjects/Invoice/quickActions","layouts":"/services/data/v58.0/sobjects/Invoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/Invoice"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Feed","labelPlural":"Invoice Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Invoice","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice History","labelPlural":"Invoice History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5TV","label":"Invoice + Line","labelPlural":"Invoice Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"InvoiceLine","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/InvoiceLine/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/InvoiceLine/describe","quickActions":"/services/data/v58.0/sobjects/InvoiceLine/quickActions","layouts":"/services/data/v58.0/sobjects/InvoiceLine/describe/layouts","sobject":"/services/data/v58.0/sobjects/InvoiceLine"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line Feed","labelPlural":"Invoice Line Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineFeed/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineFeed/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"InvoiceLine","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Line History","labelPlural":"Invoice Line History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceLineHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceLineHistory/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceLineHistory/describe","sobject":"/services/data/v58.0/sobjects/InvoiceLineHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Invoice","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Invoice + Share","labelPlural":"Invoice Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"InvoiceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/InvoiceShare/{ID}","describe":"/services/data/v58.0/sobjects/InvoiceShare/describe","sobject":"/services/data/v58.0/sobjects/InvoiceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jp","label":"Job + Profile","labelPlural":"Job Profiles","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"JobProfile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/JobProfile/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/JobProfile/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/JobProfile/describe","quickActions":"/services/data/v58.0/sobjects/JobProfile/quickActions","layouts":"/services/data/v58.0/sobjects/JobProfile/describe/layouts","sobject":"/services/data/v58.0/sobjects/JobProfile"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Feed","labelPlural":"Job Profile Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileFeed/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileFeed/describe","sobject":"/services/data/v58.0/sobjects/JobProfileFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"JobProfile","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile History","labelPlural":"Job Profile History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileHistory/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileHistory/describe","sobject":"/services/data/v58.0/sobjects/JobProfileHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"JobProfile","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Job + Profile Share","labelPlural":"Job Profile Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"JobProfileShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/JobProfileShare/{ID}","describe":"/services/data/v58.0/sobjects/JobProfileShare/describe","sobject":"/services/data/v58.0/sobjects/JobProfileShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0in","label":"Knowledgeable + User","labelPlural":"Knowledgeable Users","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"KnowledgeableUser","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/KnowledgeableUser/{ID}","describe":"/services/data/v58.0/sobjects/KnowledgeableUser/describe","sobject":"/services/data/v58.0/sobjects/KnowledgeableUser"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00Q","label":"Lead","labelPlural":"Leads","layoutable":true,"mergeable":true,"mruEnabled":true,"name":"Lead","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Lead/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Lead/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Lead/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Lead/listviews","describe":"/services/data/v58.0/sobjects/Lead/describe","quickActions":"/services/data/v58.0/sobjects/Lead/quickActions","layouts":"/services/data/v58.0/sobjects/Lead/describe/layouts","sobject":"/services/data/v58.0/sobjects/Lead"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Change Event","labelPlural":"Lead Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LeadChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LeadChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LeadChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1CL","label":"Lead + Clean Info","labelPlural":"Lead Clean Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadCleanInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadCleanInfo/{ID}","describe":"/services/data/v58.0/sobjects/LeadCleanInfo/describe","sobject":"/services/data/v58.0/sobjects/LeadCleanInfo"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + Feed","labelPlural":"Lead Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadFeed/{ID}","describe":"/services/data/v58.0/sobjects/LeadFeed/describe","sobject":"/services/data/v58.0/sobjects/LeadFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Lead","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lead + History","labelPlural":"Lead History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadHistory/{ID}","describe":"/services/data/v58.0/sobjects/LeadHistory/describe","sobject":"/services/data/v58.0/sobjects/LeadHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Lead","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01o","label":"Lead + Share","labelPlural":"Lead Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadShare/{ID}","describe":"/services/data/v58.0/sobjects/LeadShare/describe","sobject":"/services/data/v58.0/sobjects/LeadShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Lead + Status Value","labelPlural":"Lead Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LeadStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LeadStatus/{ID}","describe":"/services/data/v58.0/sobjects/LeadStatus/describe","sobject":"/services/data/v58.0/sobjects/LeadStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0fw","label":"Legal + Entity","labelPlural":"Legal Entities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LegalEntity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LegalEntity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LegalEntity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LegalEntity/describe","quickActions":"/services/data/v58.0/sobjects/LegalEntity/quickActions","layouts":"/services/data/v58.0/sobjects/LegalEntity/describe/layouts","sobject":"/services/data/v58.0/sobjects/LegalEntity"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val LegalEntity not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityFeed/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityFeed/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LegalEntity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity History","labelPlural":"Legal Entity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityHistory/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityHistory/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LegalEntity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Legal + Entity Share","labelPlural":"Legal Entity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LegalEntityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LegalEntityShare/{ID}","describe":"/services/data/v58.0/sobjects/LegalEntityShare/describe","sobject":"/services/data/v58.0/sobjects/LegalEntityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0S1","label":"Lightning + Experience Theme","labelPlural":"Lightning Experience Themes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningExperienceTheme","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningExperienceTheme/{ID}","describe":"/services/data/v58.0/sobjects/LightningExperienceTheme/describe","sobject":"/services/data/v58.0/sobjects/LightningExperienceTheme"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7MM","label":"LightningOnboardingConfig","labelPlural":"LightningOnboardingConfigs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningOnboardingConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningOnboardingConfig/{ID}","describe":"/services/data/v58.0/sobjects/LightningOnboardingConfig/describe","sobject":"/services/data/v58.0/sobjects/LightningOnboardingConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bh","label":"Lightning + URI Event","labelPlural":"Lightning URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEvent/{ID}","describe":"/services/data/v58.0/sobjects/LightningUriEvent/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bi","label":"Lightning + URI Event Stream","labelPlural":"Lightning URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LightningUriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LightningUriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LightningUriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LightningUriEventStream/describe","sobject":"/services/data/v58.0/sobjects/LightningUriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XB","label":"List + Email","labelPlural":"List Emails","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ListEmail","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ListEmail/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ListEmail/{ID}","describe":"/services/data/v58.0/sobjects/ListEmail/describe","layouts":"/services/data/v58.0/sobjects/ListEmail/describe/layouts","sobject":"/services/data/v58.0/sobjects/ListEmail"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ListEmail","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Change Event","labelPlural":"List Email Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListEmailChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ListEmailChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ListEmailChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XF","label":"List + Email Individual Recipient","labelPlural":"List Email Individual Recipients","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailIndividualRecipient","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient/describe","sobject":"/services/data/v58.0/sobjects/ListEmailIndividualRecipient"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XD","label":"List + Email Recipient Source","labelPlural":"List Email Recipient Sources","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailRecipientSource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailRecipientSource/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailRecipientSource/describe","sobject":"/services/data/v58.0/sobjects/ListEmailRecipientSource"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ListEmail","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"List + Email Share","labelPlural":"List Email Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListEmailShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListEmailShare/{ID}","describe":"/services/data/v58.0/sobjects/ListEmailShare/describe","sobject":"/services/data/v58.0/sobjects/ListEmailShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00B","label":"List + View","labelPlural":"List Views","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListView/{ID}","describe":"/services/data/v58.0/sobjects/ListView/describe","sobject":"/services/data/v58.0/sobjects/ListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Dd","label":"List + View Chart","labelPlural":"List View Charts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChart","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChart/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChart/describe","sobject":"/services/data/v58.0/sobjects/ListViewChart"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0De","label":"List + View Chart Instance","labelPlural":"List View Chart Instances","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewChartInstance","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewChartInstance/{ID}","describe":"/services/data/v58.0/sobjects/ListViewChartInstance/describe","sobject":"/services/data/v58.0/sobjects/ListViewChartInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0X8","label":"List + View Event","labelPlural":"List View Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEvent/{ID}","describe":"/services/data/v58.0/sobjects/ListViewEvent/describe","sobject":"/services/data/v58.0/sobjects/ListViewEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XG","label":"List + View Event Stream","labelPlural":"List View Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ListViewEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ListViewEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ListViewEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ListViewEventStream/describe","sobject":"/services/data/v58.0/sobjects/ListViewEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"131","label":"Location","labelPlural":"Locations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Location","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Location/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Location/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Location/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Location/describe","quickActions":"/services/data/v58.0/sobjects/Location/quickActions","layouts":"/services/data/v58.0/sobjects/Location/describe/layouts","sobject":"/services/data/v58.0/sobjects/Location"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Change Event","labelPlural":"Location Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/LocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/LocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/LocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Feed","labelPlural":"Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gh","label":"Location + Group","labelPlural":"Location Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroup/describe","quickActions":"/services/data/v58.0/sobjects/LocationGroup/quickActions","layouts":"/services/data/v58.0/sobjects/LocationGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gx","label":"Location + Group Assignment","labelPlural":"Location Group Assignments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"LocationGroupAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/LocationGroupAssignment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe","layouts":"/services/data/v58.0/sobjects/LocationGroupAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/LocationGroupAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Feed","labelPlural":"Location Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"LocationGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group History","labelPlural":"Location Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"LocationGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Group Share","labelPlural":"Location Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationGroupShare/describe","sobject":"/services/data/v58.0/sobjects/LocationGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Location","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + History","labelPlural":"Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/LocationHistory/describe","sobject":"/services/data/v58.0/sobjects/LocationHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Location","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Location + Share","labelPlural":"Location Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LocationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LocationShare/{ID}","describe":"/services/data/v58.0/sobjects/LocationShare/describe","sobject":"/services/data/v58.0/sobjects/LocationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VX","label":"LoginAs + Event","labelPlural":"LoginAs Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginAsEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VY","label":"LoginAs + Event Stream","labelPlural":"LoginAs Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginAsEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginAsEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginAsEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginAsEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginAsEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1HB","label":"Login + Event","labelPlural":"Login Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEvent/{ID}","describe":"/services/data/v58.0/sobjects/LoginEvent/describe","sobject":"/services/data/v58.0/sobjects/LoginEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ll","label":"Login + Event Stream","labelPlural":"Login Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LoginEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LoginEventStream/describe","sobject":"/services/data/v58.0/sobjects/LoginEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04F","label":"Login + Geo Data","labelPlural":"Login Geo Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginGeo","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginGeo/{ID}","describe":"/services/data/v58.0/sobjects/LoginGeo/describe","sobject":"/services/data/v58.0/sobjects/LoginGeo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ya","label":"Login + History","labelPlural":"Login History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginHistory/{ID}","describe":"/services/data/v58.0/sobjects/LoginHistory/describe","sobject":"/services/data/v58.0/sobjects/LoginHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"710","label":"Login + IP","labelPlural":"Login IP","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LoginIp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LoginIp/{ID}","describe":"/services/data/v58.0/sobjects/LoginIp/describe","sobject":"/services/data/v58.0/sobjects/LoginIp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"06M","label":"Logout + Event","labelPlural":"Logout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEvent/{ID}","describe":"/services/data/v58.0/sobjects/LogoutEvent/describe","sobject":"/services/data/v58.0/sobjects/LogoutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PH","label":"Logout + Event Stream","labelPlural":"Logout Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LogoutEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LogoutEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/LogoutEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/LogoutEventStream/describe","sobject":"/services/data/v58.0/sobjects/LogoutEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Lookups + from Activity","labelPlural":"Lookups from Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"LookedUpFromActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/LookedUpFromActivity/{ID}","describe":"/services/data/v58.0/sobjects/LookedUpFromActivity/describe","sobject":"/services/data/v58.0/sobjects/LookedUpFromActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"873","label":"ML + Model","labelPlural":"ML Models","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModel/describe","sobject":"/services/data/v58.0/sobjects/MLModel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"876","label":"ML + Model Factor","labelPlural":"ML Model Factors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactor/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"877","label":"ML + Model Factor Component","labelPlural":"ML Model Factor Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelFactorComponent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelFactorComponent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MLModelFactorComponent/describe","sobject":"/services/data/v58.0/sobjects/MLModelFactorComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"874","label":"ML + Model Metric","labelPlural":"ML Model Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLModelMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLModelMetric/{ID}","describe":"/services/data/v58.0/sobjects/MLModelMetric/describe","sobject":"/services/data/v58.0/sobjects/MLModelMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6gt","label":"ML + Prediction Definition","labelPlural":"ML Prediction Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLPredictionDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLPredictionDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLPredictionDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLPredictionDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7gh","label":"ML + Recommendation Definition","labelPlural":"ML Recommendation Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MLRecommendationDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MLRecommendationDefinition/{ID}","describe":"/services/data/v58.0/sobjects/MLRecommendationDefinition/describe","sobject":"/services/data/v58.0/sobjects/MLRecommendationDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JZ","label":"Macro","labelPlural":"Macros","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Macro","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Macro/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Macro/{ID}","describe":"/services/data/v58.0/sobjects/Macro/describe","layouts":"/services/data/v58.0/sobjects/Macro/describe/layouts","sobject":"/services/data/v58.0/sobjects/Macro"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Change Event","labelPlural":"Macro Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Macro","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + History","labelPlural":"Macro History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroHistory/{ID}","describe":"/services/data/v58.0/sobjects/MacroHistory/describe","sobject":"/services/data/v58.0/sobjects/MacroHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ji","label":"Macro + Instruction","labelPlural":"Macro Instructions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstruction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstruction/{ID}","describe":"/services/data/v58.0/sobjects/MacroInstruction/describe","sobject":"/services/data/v58.0/sobjects/MacroInstruction"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MacroInstruction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Instruction Change Event","labelPlural":"Macro Instruction Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroInstructionChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MacroInstructionChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Macro","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Share","labelPlural":"Macro Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroShare/describe","sobject":"/services/data/v58.0/sobjects/MacroShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5ML","label":"Macro + Usage","labelPlural":"Macro Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MacroUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MacroUsage/describe","sobject":"/services/data/v58.0/sobjects/MacroUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MacroUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Macro + Usage Share","labelPlural":"Macro Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MacroUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MacroUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/MacroUsageShare/describe","sobject":"/services/data/v58.0/sobjects/MacroUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01H","label":"Mail + Merge Template","labelPlural":"Mail Merge Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MailmergeTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MailmergeTemplate/{ID}","describe":"/services/data/v58.0/sobjects/MailmergeTemplate/describe","sobject":"/services/data/v58.0/sobjects/MailmergeTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MA","label":"Maintenance + Asset","labelPlural":"Maintenance Assets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceAsset","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAsset/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceAsset/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceAsset/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceAsset/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceAsset"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Change Event","labelPlural":"Maintenance Asset Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset Feed","labelPlural":"Maintenance Asset Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceAsset","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Asset History","labelPlural":"Maintenance Asset History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceAssetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceAssetHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceAssetHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1MP","label":"Maintenance + Plan","labelPlural":"Maintenance Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenancePlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenancePlan/describe","quickActions":"/services/data/v58.0/sobjects/MaintenancePlan/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenancePlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenancePlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Change Event","labelPlural":"Maintenance Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Feed","labelPlural":"Maintenance Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenancePlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan History","labelPlural":"Maintenance Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenancePlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Plan Share","labelPlural":"Maintenance Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenancePlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenancePlanShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenancePlanShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenancePlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7fc","label":"Maintenance + Work Rule","labelPlural":"Maintenance Work Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MaintenanceWorkRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe","quickActions":"/services/data/v58.0/sobjects/MaintenanceWorkRule/quickActions","layouts":"/services/data/v58.0/sobjects/MaintenanceWorkRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Change Event","labelPlural":"Maintenance Work Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Feed","labelPlural":"Maintenance Work Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MaintenanceWorkRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule History","labelPlural":"Maintenance Work Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MaintenanceWorkRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Maintenance + Work Rule Share","labelPlural":"Maintenance Work Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MaintenanceWorkRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare/describe","sobject":"/services/data/v58.0/sobjects/MaintenanceWorkRuleShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"20Y","label":"Managed + Content","labelPlural":"Managed Contents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContent/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContent/describe","layouts":"/services/data/v58.0/sobjects/ManagedContent/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ap","label":"Managed + Content Channel","labelPlural":"Managed Content Channels","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentChannel/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentChannel/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zu","label":"Managed + Content Space","labelPlural":"Managed Content Spaces","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ManagedContentSpace","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentSpace/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentSpace/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentSpace"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9Ps","label":"Managed + Content Variant","labelPlural":"Managed Content Variants","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariant","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariant/{ID}","describe":"/services/data/v58.0/sobjects/ManagedContentVariant/describe","layouts":"/services/data/v58.0/sobjects/ManagedContentVariant/describe/layouts","sobject":"/services/data/v58.0/sobjects/ManagedContentVariant"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ManagedContentVariant","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Managed + Content Variant Change Event","labelPlural":"Managed Content Variant Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ManagedContentVariantChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ManagedContentVariantChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ib","label":"Matching + Information","labelPlural":"Matching Information","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingInformation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingInformation/{ID}","describe":"/services/data/v58.0/sobjects/MatchingInformation/describe","sobject":"/services/data/v58.0/sobjects/MatchingInformation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JD","label":"Matching + Rule","labelPlural":"Matching Rules","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"MatchingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRule/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRule/describe","sobject":"/services/data/v58.0/sobjects/MatchingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JE","label":"Matching + Rule Item","labelPlural":"Matching Rule Items","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MatchingRuleItem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MatchingRuleItem/{ID}","describe":"/services/data/v58.0/sobjects/MatchingRuleItem/describe","sobject":"/services/data/v58.0/sobjects/MatchingRuleItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mj","label":"Messaging + Channel","labelPlural":"Messaging Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingChannel","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingChannel/{ID}","describe":"/services/data/v58.0/sobjects/MessagingChannel/describe","layouts":"/services/data/v58.0/sobjects/MessagingChannel/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingChannel"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PA","label":"Messaging + User","labelPlural":"Messaging Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingEndUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingEndUser/describe","quickActions":"/services/data/v58.0/sobjects/MessagingEndUser/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingEndUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingEndUser"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingEndUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User History","labelPlural":"Messaging User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingEndUser","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + User Share","labelPlural":"Messaging User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingEndUserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingEndUserShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingEndUserShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingEndUserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mw","label":"Messaging + Session","labelPlural":"Messaging Sessions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"MessagingSession","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MessagingSession/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/MessagingSession/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/MessagingSession/describe","quickActions":"/services/data/v58.0/sobjects/MessagingSession/quickActions","layouts":"/services/data/v58.0/sobjects/MessagingSession/describe/layouts","sobject":"/services/data/v58.0/sobjects/MessagingSession"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Feed","labelPlural":"Messaging Session Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionFeed/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionFeed/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"MessagingSession","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session History","labelPlural":"Messaging Session History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionHistory/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionHistory/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"MessagingSession","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Messaging + Session Share","labelPlural":"Messaging Session Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MessagingSessionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MessagingSessionShare/{ID}","describe":"/services/data/v58.0/sobjects/MessagingSessionShare/describe","sobject":"/services/data/v58.0/sobjects/MessagingSessionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"557","label":"Milestone","labelPlural":"Milestones","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MilestoneType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MilestoneType/{ID}","describe":"/services/data/v58.0/sobjects/MilestoneType/describe","sobject":"/services/data/v58.0/sobjects/MilestoneType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IW","label":"Mobile + Application Detail","labelPlural":"Mobile Application Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MobileApplicationDetail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MobileApplicationDetail/{ID}","describe":"/services/data/v58.0/sobjects/MobileApplicationDetail/describe","sobject":"/services/data/v58.0/sobjects/MobileApplicationDetail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00M","label":"Mobile + Settings Assignment","labelPlural":"Mobile Settings Assignments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"MobileSettingsAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/MobileSettingsAssignment/{ID}","describe":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe","layouts":"/services/data/v58.0/sobjects/MobileSettingsAssignment/describe/layouts","sobject":"/services/data/v58.0/sobjects/MobileSettingsAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Or","label":"Messaging + Channel Language Keyword","labelPlural":"Messaging Channel Language Keywords","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MsgChannelLanguageKeyword","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/{ID}","describe":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword/describe","sobject":"/services/data/v58.0/sobjects/MsgChannelLanguageKeyword"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QM","label":"Muting + Permission Set","labelPlural":"Muting Permission Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MutingPermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MutingPermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/MutingPermissionSet/describe","sobject":"/services/data/v58.0/sobjects/MutingPermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4hy","label":"My + Domain Discoverable Login","labelPlural":"My Domain Discoverable Logins","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"MyDomainDiscoverableLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/{ID}","describe":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin/describe","sobject":"/services/data/v58.0/sobjects/MyDomainDiscoverableLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Name","labelPlural":"Names","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Name","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Name/{ID}","describe":"/services/data/v58.0/sobjects/Name/describe","sobject":"/services/data/v58.0/sobjects/Name"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0XA","label":"Named + Credential","labelPlural":"Named Credentials","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"NamedCredential","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NamedCredential/{ID}","describe":"/services/data/v58.0/sobjects/NamedCredential/describe","sobject":"/services/data/v58.0/sobjects/NamedCredential"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"002","label":"Note","labelPlural":"Notes","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Note","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Note/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Note/{ID}","describe":"/services/data/v58.0/sobjects/Note/describe","layouts":"/services/data/v58.0/sobjects/Note/describe/layouts","sobject":"/services/data/v58.0/sobjects/Note"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Note + and Attachment","labelPlural":"Notes and Attachments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"NoteAndAttachment","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/NoteAndAttachment/{ID}","describe":"/services/data/v58.0/sobjects/NoteAndAttachment/describe","sobject":"/services/data/v58.0/sobjects/NoteAndAttachment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ud","label":"OAuth + Custom Scope","labelPlural":"OAuth Custom Scopes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScope","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScope/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScope/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScope"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7ue","label":"OAuth + Custom Scope App ","labelPlural":"OAuth Custom Scope Apps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthCustomScopeApp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthCustomScopeApp/{ID}","describe":"/services/data/v58.0/sobjects/OauthCustomScopeApp/describe","sobject":"/services/data/v58.0/sobjects/OauthCustomScopeApp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0CQ","label":"Oauth + Token","labelPlural":"Oauth Tokens","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OauthToken","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OauthToken/{ID}","describe":"/services/data/v58.0/sobjects/OauthToken/describe","sobject":"/services/data/v58.0/sobjects/OauthToken"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"110","label":"Object + Permissions","labelPlural":"Object Permissions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ObjectPermissions","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ObjectPermissions/{ID}","describe":"/services/data/v58.0/sobjects/ObjectPermissions/describe","sobject":"/services/data/v58.0/sobjects/ObjectPermissions"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UG","label":"Onboarding + Metrics","labelPlural":"Onboarding Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OnboardingMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OnboardingMetrics/{ID}","describe":"/services/data/v58.0/sobjects/OnboardingMetrics/describe","sobject":"/services/data/v58.0/sobjects/OnboardingMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Open + Activity","labelPlural":"Open Activities","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpenActivity","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpenActivity/{ID}","describe":"/services/data/v58.0/sobjects/OpenActivity/describe","sobject":"/services/data/v58.0/sobjects/OpenActivity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OH","label":"Operating + Hours","labelPlural":"Operating Hours","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHours","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHours/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHours/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHours/describe","quickActions":"/services/data/v58.0/sobjects/OperatingHours/quickActions","layouts":"/services/data/v58.0/sobjects/OperatingHours/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHours"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Change Event","labelPlural":"Operating Hours Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHours","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Feed","labelPlural":"Operating Hours Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jG","label":"Operating + Hours Holiday","labelPlural":"Operating Hours Holidays","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OperatingHoursHoliday","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHoliday/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe","layouts":"/services/data/v58.0/sobjects/OperatingHoursHoliday/describe/layouts","sobject":"/services/data/v58.0/sobjects/OperatingHoursHoliday"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OperatingHoursHoliday","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Operating + Hours Holiday Feed","labelPlural":"Operating Hours Holiday Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OperatingHoursHolidayFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/{ID}","describe":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed/describe","sobject":"/services/data/v58.0/sobjects/OperatingHoursHolidayFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"006","label":"Opportunity","labelPlural":"Opportunities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Opportunity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Opportunity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Opportunity/describe/approvalLayouts","listviews":"/services/data/v58.0/sobjects/Opportunity/listviews","describe":"/services/data/v58.0/sobjects/Opportunity/describe","quickActions":"/services/data/v58.0/sobjects/Opportunity/quickActions","layouts":"/services/data/v58.0/sobjects/Opportunity/describe/layouts","sobject":"/services/data/v58.0/sobjects/Opportunity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Change Event","labelPlural":"Opportunity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00J","label":"Opportunity: + Competitor","labelPlural":"Opportunity: Competitor","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityCompetitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityCompetitor/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityCompetitor/describe","sobject":"/services/data/v58.0/sobjects/OpportunityCompetitor"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00K","label":"Opportunity + Contact Role","labelPlural":"Opportunity Contact Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRole/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityContactRole/describe","quickActions":"/services/data/v58.0/sobjects/OpportunityContactRole/quickActions","layouts":"/services/data/v58.0/sobjects/OpportunityContactRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityContactRole"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OpportunityContactRole","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Contact Role Change Event","labelPlural":"Opportunity Contact Role Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityContactRoleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OpportunityContactRoleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Feed","labelPlural":"Opportunity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFeed/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFeed/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Opportunity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Opportunity + Field History","labelPlural":"Opportunity Field History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityFieldHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityFieldHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityFieldHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityFieldHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"008","label":"Opportunity + History","labelPlural":"Opportunity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityHistory/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityHistory/describe","sobject":"/services/data/v58.0/sobjects/OpportunityHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00k","label":"Opportunity + Product","labelPlural":"Opportunity Product","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"OpportunityLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityLineItem/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityLineItem/describe","layouts":"/services/data/v58.0/sobjects/OpportunityLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityLineItem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Opportunity + Partner","labelPlural":"Opportunity Partner","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OpportunityPartner","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OpportunityPartner/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityPartner/describe","layouts":"/services/data/v58.0/sobjects/OpportunityPartner/describe/layouts","sobject":"/services/data/v58.0/sobjects/OpportunityPartner"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Opportunity","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00t","label":"Opportunity + Share","labelPlural":"Opportunity Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityShare/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityShare/describe","sobject":"/services/data/v58.0/sobjects/OpportunityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01J","label":"Opportunity + Stage","labelPlural":"Opportunity Stage","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OpportunityStage","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OpportunityStage/{ID}","describe":"/services/data/v58.0/sobjects/OpportunityStage/describe","sobject":"/services/data/v58.0/sobjects/OpportunityStage"}},{"activateable":true,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"801","label":"Order","labelPlural":"Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Order","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order/describe","quickActions":"/services/data/v58.0/sobjects/Order/quickActions","layouts":"/services/data/v58.0/sobjects/Order/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Change Event","labelPlural":"Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Feed","labelPlural":"Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + History","labelPlural":"Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"802","label":"Order + Product","labelPlural":"Order Products","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"OrderItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/OrderItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/OrderItem/{ID}","describe":"/services/data/v58.0/sobjects/OrderItem/describe","layouts":"/services/data/v58.0/sobjects/OrderItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/OrderItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Change Event","labelPlural":"Order Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrderItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/OrderItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/OrderItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product Feed","labelPlural":"Order Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemFeed/describe","sobject":"/services/data/v58.0/sobjects/OrderItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"OrderItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Product History","labelPlural":"Order Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/OrderItemHistory/describe","sobject":"/services/data/v58.0/sobjects/OrderItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Fy","label":"Order + Share","labelPlural":"Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderShare/{ID}","describe":"/services/data/v58.0/sobjects/OrderShare/describe","sobject":"/services/data/v58.0/sobjects/OrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Order + Status Value","labelPlural":"Order Status Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/OrderStatus/describe","sobject":"/services/data/v58.0/sobjects/OrderStatus"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Order_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Stripe Coupon","labelPlural":"Change Event: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Order_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Stripe Coupon","labelPlural":"Share: Order Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1N","label":"Order + Stripe Coupon","labelPlural":"Order Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Order_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D3","label":"Organization + Email Address Security","labelPlural":"Organization Email Address Security","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgEmailAddressSecurity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/{ID}","describe":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity/describe","sobject":"/services/data/v58.0/sobjects/OrgEmailAddressSecurity"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OL","label":"Org + Lifecycle Notification","labelPlural":"Org Lifecycle Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgLifecycleNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgLifecycleNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/OrgLifecycleNotification/eventSchema","describe":"/services/data/v58.0/sobjects/OrgLifecycleNotification/describe","sobject":"/services/data/v58.0/sobjects/OrgLifecycleNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3v1","label":"Org + Metric","labelPlural":"Org Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetric/{ID}","describe":"/services/data/v58.0/sobjects/OrgMetric/describe","sobject":"/services/data/v58.0/sobjects/OrgMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9aM","label":"Org + Metric Scan Result","labelPlural":"Org Metric Scan Results","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanResult","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanResult/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanResult/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanResult"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"6mX","label":"Org + Metric Scan Summary","labelPlural":"Org Metric Scan Summaries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgMetricScanSummary","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgMetricScanSummary/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/OrgMetricScanSummary/describe","sobject":"/services/data/v58.0/sobjects/OrgMetricScanSummary"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0D2","label":"Organization-wide + From Email Address","labelPlural":"Organization-wide From Email Addresses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OrgWideEmailAddress","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OrgWideEmailAddress/{ID}","describe":"/services/data/v58.0/sobjects/OrgWideEmailAddress/describe","sobject":"/services/data/v58.0/sobjects/OrgWideEmailAddress"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00D","label":"Organization","labelPlural":"Organizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization/{ID}","describe":"/services/data/v58.0/sobjects/Organization/describe","sobject":"/services/data/v58.0/sobjects/Organization"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Organization_Type__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Organization Type","labelPlural":"Change Event: Organization Type","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Organization_Type__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1O","label":"Organization + Type","labelPlural":"Organization Type","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Organization_Type__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Organization_Type__c/{ID}","describe":"/services/data/v58.0/sobjects/Organization_Type__c/describe","quickActions":"/services/data/v58.0/sobjects/Organization_Type__c/quickActions","layouts":"/services/data/v58.0/sobjects/Organization_Type__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Organization_Type__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q1","label":"Outgoing + Email","labelPlural":"Outgoing Emails","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmail/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmail/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Q3","label":"Outgoing + Email Relation","labelPlural":"Outgoing Email Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OutgoingEmailRelation","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OutgoingEmailRelation/{ID}","describe":"/services/data/v58.0/sobjects/OutgoingEmailRelation/describe","sobject":"/services/data/v58.0/sobjects/OutgoingEmailRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Owned File","labelPlural":"User Owned File","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnedContentDocument","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnedContentDocument/{ID}","describe":"/services/data/v58.0/sobjects/OwnedContentDocument/describe","sobject":"/services/data/v58.0/sobjects/OwnedContentDocument"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Cy","label":"Change + Owner Option Info","labelPlural":"Change Owner Options Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"OwnerChangeOptionInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/{ID}","describe":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo/describe","sobject":"/services/data/v58.0/sobjects/OwnerChangeOptionInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"050","label":"Package + License","labelPlural":"Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/PackageLicense/describe","sobject":"/services/data/v58.0/sobjects/PackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0lH","label":"Participant","labelPlural":"Participants","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Participant","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Participant/{ID}","describe":"/services/data/v58.0/sobjects/Participant/describe","sobject":"/services/data/v58.0/sobjects/Participant"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00I","label":"Partner","labelPlural":"Partner","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Partner","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Partner/{ID}","describe":"/services/data/v58.0/sobjects/Partner/describe","sobject":"/services/data/v58.0/sobjects/Partner"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Partner + Role Value","labelPlural":"Partner Role Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartnerRole","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartnerRole/{ID}","describe":"/services/data/v58.0/sobjects/PartnerRole/describe","sobject":"/services/data/v58.0/sobjects/PartnerRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g8","label":"Party + Consent","labelPlural":"Party Consents","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PartyConsent","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PartyConsent/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PartyConsent/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PartyConsent/describe","quickActions":"/services/data/v58.0/sobjects/PartyConsent/quickActions","layouts":"/services/data/v58.0/sobjects/PartyConsent/describe/layouts","sobject":"/services/data/v58.0/sobjects/PartyConsent"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Change Event","labelPlural":"Party Consent Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PartyConsentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Feed","labelPlural":"Party Consent Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentFeed/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PartyConsent","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent History","labelPlural":"Party Consent History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentHistory/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentHistory/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PartyConsent","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Party + Consent Share","labelPlural":"Party Consent Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PartyConsentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PartyConsentShare/{ID}","describe":"/services/data/v58.0/sobjects/PartyConsentShare/describe","sobject":"/services/data/v58.0/sobjects/PartyConsentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0aQ","label":"Payment","labelPlural":"Payments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Payment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Payment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Payment/{ID}","describe":"/services/data/v58.0/sobjects/Payment/describe","quickActions":"/services/data/v58.0/sobjects/Payment/quickActions","layouts":"/services/data/v58.0/sobjects/Payment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Payment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9tv","label":"Payment + Authorization Adjustment","labelPlural":"Payment Authorization Adjustments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthAdjustment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthAdjustment/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthAdjustment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xc","label":"Payment + Authorization","labelPlural":"Payment Authorizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentAuthorization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentAuthorization/{ID}","describe":"/services/data/v58.0/sobjects/PaymentAuthorization/describe","quickActions":"/services/data/v58.0/sobjects/PaymentAuthorization/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentAuthorization/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentAuthorization"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Payment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val Payment not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PaymentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentFeed/{ID}","describe":"/services/data/v58.0/sobjects/PaymentFeed/describe","sobject":"/services/data/v58.0/sobjects/PaymentFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0b0","label":"Payment + Gateway","labelPlural":"Payment Gateways","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGateway","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGateway/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGateway/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGateway/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGateway/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGateway"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xt","label":"Payment + Gateway Log","labelPlural":"Payment Gateway Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayLog/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGatewayLog/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGatewayLog/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cJ","label":"Payment + Gateway Provider","labelPlural":"Payment Gateway Providers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PaymentGatewayProvider","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGatewayProvider/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe","layouts":"/services/data/v58.0/sobjects/PaymentGatewayProvider/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGatewayProvider"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9zx","label":"Payment + Group","labelPlural":"Payment Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentGroup/{ID}","describe":"/services/data/v58.0/sobjects/PaymentGroup/describe","quickActions":"/services/data/v58.0/sobjects/PaymentGroup/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1PL","label":"Payment + Line Invoice","labelPlural":"Payment Line Invoices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentLineInvoice","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PaymentLineInvoice/{ID}","describe":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe","quickActions":"/services/data/v58.0/sobjects/PaymentLineInvoice/quickActions","layouts":"/services/data/v58.0/sobjects/PaymentLineInvoice/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentLineInvoice"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":true,"isSubtype":false,"keyPrefix":"0aa","label":"Payment + Method","labelPlural":"Payment Methods","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PaymentMethod","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PaymentMethod/{ID}","describe":"/services/data/v58.0/sobjects/PaymentMethod/describe","layouts":"/services/data/v58.0/sobjects/PaymentMethod/describe/layouts","sobject":"/services/data/v58.0/sobjects/PaymentMethod"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"026","label":"Period","labelPlural":"Period","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Period","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Period/{ID}","describe":"/services/data/v58.0/sobjects/Period/describe","sobject":"/services/data/v58.0/sobjects/Period"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PS","label":"Permission + Set","labelPlural":"Permission Sets","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSet","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSet/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSet/describe","sobject":"/services/data/v58.0/sobjects/PermissionSet"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Pa","label":"Permission + Set Assignment","labelPlural":"Permission Set Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetAssignment/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetAssignment/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f3","label":"Permission + Set Event","labelPlural":"Permission Set Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PermissionSetEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PermissionSetEvent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0f9","label":"Permission + Set Event Store ","labelPlural":"Permission Set Event Stores","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetEventStore","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetEventStore/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetEventStore/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetEventStore"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PG","label":"Permission + Set Group","labelPlural":"Permission Set Groups","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"PermissionSetGroup","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroup/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroup/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroup"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PM","label":"Permission + Set Group Component","labelPlural":"Permission Set Group Components","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetGroupComponent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetGroupComponent/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetGroupComponent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0PL","label":"Permission + Set License","labelPlural":"Permission Set Licenses","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicense/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicense/describe","layouts":"/services/data/v58.0/sobjects/PermissionSetLicense/describe/layouts","sobject":"/services/data/v58.0/sobjects/PermissionSetLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2LA","label":"Permission + Set License Assignment","labelPlural":"Permission Set License Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetLicenseAssign","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetLicenseAssign"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01P","label":"Permission + Set Tab Setting","labelPlural":"Permission Set Tab Setting","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PermissionSetTabSetting","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PermissionSetTabSetting/{ID}","describe":"/services/data/v58.0/sobjects/PermissionSetTabSetting/describe","sobject":"/services/data/v58.0/sobjects/PermissionSetTabSetting"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pv","label":"Picklist + Value Info","labelPlural":"Picklist Value Info","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PicklistValueInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PicklistValueInfo/{ID}","describe":"/services/data/v58.0/sobjects/PicklistValueInfo/describe","sobject":"/services/data/v58.0/sobjects/PicklistValueInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JV","label":"Platform + Action","labelPlural":"Platform Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformAction","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformAction/{ID}","describe":"/services/data/v58.0/sobjects/PlatformAction/describe","sobject":"/services/data/v58.0/sobjects/PlatformAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Er","label":"Platform + Cache Partition","labelPlural":"Platform Cache Partitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartition/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartition/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ev","label":"Platform + Cache Partition Type","labelPlural":"Platform Cache Partition Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformCachePartitionType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformCachePartitionType/{ID}","describe":"/services/data/v58.0/sobjects/PlatformCachePartitionType/describe","sobject":"/services/data/v58.0/sobjects/PlatformCachePartitionType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8Kk","label":"Platform + Event Usage Metric","labelPlural":"Platform Event Usage Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformEventUsageMetric","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/{ID}","describe":"/services/data/v58.0/sobjects/PlatformEventUsageMetric/describe","sobject":"/services/data/v58.0/sobjects/PlatformEventUsageMetric"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0V2","label":"Platform + Status Alert Event","labelPlural":"Platform Status Alert Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PlatformStatusAlertEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent/describe","sobject":"/services/data/v58.0/sobjects/PlatformStatusAlertEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01s","label":"Price + Book","labelPlural":"Price Books","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Pricebook2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Pricebook2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Pricebook2/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2/describe","layouts":"/services/data/v58.0/sobjects/Pricebook2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Pricebook2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Change Event","labelPlural":"Price Book Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Pricebook2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book History","labelPlural":"Price Book History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Pricebook2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Pricebook2History/{ID}","describe":"/services/data/v58.0/sobjects/Pricebook2History/describe","sobject":"/services/data/v58.0/sobjects/Pricebook2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01u","label":"Price + Book Entry","labelPlural":"Price Book Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"PricebookEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/PricebookEntry/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntry/describe","layouts":"/services/data/v58.0/sobjects/PricebookEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/PricebookEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry Change Event","labelPlural":"Price Book Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"PricebookEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Price + Book Entry History","labelPlural":"Price Book Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PricebookEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PricebookEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/PricebookEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/PricebookEntryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04a","label":"Process + Definition","labelPlural":"Process Definition","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ProcessDefinition","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessDefinition/{ID}","describe":"/services/data/v58.0/sobjects/ProcessDefinition/describe","sobject":"/services/data/v58.0/sobjects/ProcessDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2Pe","label":"Process + Exception","labelPlural":"Process Exceptions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProcessException","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProcessException/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProcessException/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProcessException/describe","quickActions":"/services/data/v58.0/sobjects/ProcessException/quickActions","layouts":"/services/data/v58.0/sobjects/ProcessException/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProcessException"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4v2","label":"Process + Exception Event","labelPlural":"Process Exception Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProcessExceptionEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProcessExceptionEvent/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProcessException","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Exception Share","labelPlural":"Process Exception Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessExceptionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessExceptionShare/{ID}","describe":"/services/data/v58.0/sobjects/ProcessExceptionShare/describe","sobject":"/services/data/v58.0/sobjects/ProcessExceptionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"11Q","label":"Process + Flow Migration","labelPlural":"Process Flow Migration Objects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessFlowMigration","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessFlowMigration/{ID}","describe":"/services/data/v58.0/sobjects/ProcessFlowMigration/describe","sobject":"/services/data/v58.0/sobjects/ProcessFlowMigration"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04g","label":"Process + Instance","labelPlural":"Process Instance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstance","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstance/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstance/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstance"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Process + Instance History","labelPlural":"Process Instance History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceHistory","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceHistory/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OO","label":"Process + Instance Node","labelPlural":"Process Instance Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceNode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04h","label":"Process + Instance Step","labelPlural":"Process Instance Step","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceStep","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceStep/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceStep/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04i","label":"Approval + Request","labelPlural":"Approval Requests","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessInstanceWorkitem","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/{ID}","describe":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem/describe","sobject":"/services/data/v58.0/sobjects/ProcessInstanceWorkitem"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"04b","label":"Process + Node","labelPlural":"Process Node","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProcessNode","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProcessNode/{ID}","describe":"/services/data/v58.0/sobjects/ProcessNode/describe","sobject":"/services/data/v58.0/sobjects/ProcessNode"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01t","label":"Product","labelPlural":"Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Product2","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Product2/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Product2/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Product2/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Product2/describe","quickActions":"/services/data/v58.0/sobjects/Product2/quickActions","layouts":"/services/data/v58.0/sobjects/Product2/describe/layouts","sobject":"/services/data/v58.0/sobjects/Product2"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Change Event","labelPlural":"Product Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Product2ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Product2ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Product2ChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Feed","labelPlural":"Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2Feed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2Feed/{ID}","describe":"/services/data/v58.0/sobjects/Product2Feed/describe","sobject":"/services/data/v58.0/sobjects/Product2Feed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Product2","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + History","labelPlural":"Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Product2History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Product2History/{ID}","describe":"/services/data/v58.0/sobjects/Product2History/describe","sobject":"/services/data/v58.0/sobjects/Product2History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gv","label":"Product + Consumed","labelPlural":"Products Consumed","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductConsumed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumed/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumed/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumed/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumed/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumed"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Change Event","labelPlural":"Product Consumed Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed Feed","labelPlural":"Product Consumed Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumed","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed History","labelPlural":"Product Consumed History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pY","label":"Product + Consumed State","labelPlural":"Product Consumed States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductConsumedState/describe","quickActions":"/services/data/v58.0/sobjects/ProductConsumedState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductConsumedState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumedState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductConsumedState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Consumed State History","labelPlural":"Product Consumed State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductConsumedStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumedStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductConsumedStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Mq","label":"Product + Consumption Schedule","labelPlural":"Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductConsumptionSchedule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/{ID}","describe":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe","layouts":"/services/data/v58.0/sobjects/ProductConsumptionSchedule/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductConsumptionSchedule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0E9","label":"Product + Entitlement Template","labelPlural":"Product Entitlement Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductEntitlementTemplate","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ProductEntitlementTemplate/describe","sobject":"/services/data/v58.0/sobjects/ProductEntitlementTemplate"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Co","label":"Product + Item","labelPlural":"Product Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Change Event","labelPlural":"Product Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Feed","labelPlural":"Product Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item History","labelPlural":"Product Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductItem","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Share","labelPlural":"Product Item Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemShare/describe","sobject":"/services/data/v58.0/sobjects/ProductItemShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TR","label":"Product + Item Transaction","labelPlural":"Product Item Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductItemTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductItemTransaction/describe","quickActions":"/services/data/v58.0/sobjects/ProductItemTransaction/quickActions","layouts":"/services/data/v58.0/sobjects/ProductItemTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductItemTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction Feed","labelPlural":"Product Item Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductItemTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Item Transaction History","labelPlural":"Product Item Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductItemTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductItemTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductItemTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TS","label":"Product + Request","labelPlural":"Product Requests","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequest/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequest/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequest"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Change Event","labelPlural":"Product Request Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Feed","labelPlural":"Product Request Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequest","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request History ","labelPlural":"Product Request History ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Tw","label":"Product + Request Line Item","labelPlural":"Product Request Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequestLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequestLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequestLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Change Event","labelPlural":"Product Request Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item Feed","labelPlural":"Product Request Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequestLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Line Item History ","labelPlural":"Product Request Line Item History + ","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Request Share","labelPlural":"Product Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequestShare/describe","sobject":"/services/data/v58.0/sobjects/ProductRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gn","label":"Product + Required","labelPlural":"Products Required","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductRequired","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductRequired/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductRequired/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductRequired/describe","quickActions":"/services/data/v58.0/sobjects/ProductRequired/quickActions","layouts":"/services/data/v58.0/sobjects/ProductRequired/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductRequired"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Change Event","labelPlural":"Product Required Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required Feed","labelPlural":"Product Required Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductRequired","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Required History","labelPlural":"Product Required History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductRequiredHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductRequiredHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductRequiredHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductRequiredHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iR","label":"Product + Service Campaign","labelPlural":"Product Service Campaigns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaign","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaign/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaign/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaign/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaign"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Feed","labelPlural":"Product Service Campaign Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaign","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign History","labelPlural":"Product Service Campaign History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"23N","label":"Product + Service Campaign Item","labelPlural":"Product Service Campaign Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductServiceCampaignItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe","quickActions":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/quickActions","layouts":"/services/data/v58.0/sobjects/ProductServiceCampaignItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Feed","labelPlural":"Product Service Campaign Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductServiceCampaignItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item History","labelPlural":"Product Service Campaign Item + History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Item Status","labelPlural":"Product Service Campaign Item + Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductServiceCampaign","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Share","labelPlural":"Product Service Campaign Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignShare/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Service Campaign Status","labelPlural":"Product Service Campaign Status","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductServiceCampaignStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/{ID}","describe":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus/describe","sobject":"/services/data/v58.0/sobjects/ProductServiceCampaignStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Lu","label":"Product + Transfer","labelPlural":"Product Transfers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductTransfer","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransfer/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransfer/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransfer/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransfer/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransfer"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Change Event","labelPlural":"Product Transfer Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ProductTransferChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Feed","labelPlural":"Product Transfer Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransfer","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer History","labelPlural":"Product Transfer History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProductTransfer","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer Share","labelPlural":"Product Transfer Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferShare/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferShare/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0nw","label":"Product + Transfer State","labelPlural":"Product Transfer States","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProductTransferState","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductTransferState/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProductTransferState/describe","quickActions":"/services/data/v58.0/sobjects/ProductTransferState/quickActions","layouts":"/services/data/v58.0/sobjects/ProductTransferState/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductTransferState"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductTransferState","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Transfer State History","labelPlural":"Product Transfer State History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductTransferStateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductTransferStateHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductTransferStateHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductTransferStateHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Uj","label":"Product + Warranty Term","labelPlural":"Product Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProductWarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTerm/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/ProductWarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/ProductWarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTerm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term Feed","labelPlural":"Product Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProductWarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Product + Warranty Term History","labelPlural":"Product Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProductWarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/ProductWarrantyTermHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00e","label":"Profile","labelPlural":"Profile","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Profile","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Profile/{ID}","describe":"/services/data/v58.0/sobjects/Profile/describe","sobject":"/services/data/v58.0/sobjects/Profile"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sk","label":"Skill","labelPlural":"Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ProfileSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkill/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkill/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkill"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SE","label":"Endorsement","labelPlural":"Endorsements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillEndorsement/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsement"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + Feed","labelPlural":"Endorsement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillEndorsement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Endorsement + History","labelPlural":"Endorsement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillEndorsementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillEndorsementHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Feed","labelPlural":"Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + History","labelPlural":"Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ProfileSkill","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Share","labelPlural":"Skill Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillShare/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillShare/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SM","label":"Skill + User","labelPlural":"Skill Users","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUser","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUser/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ProfileSkillUser/describe","quickActions":"/services/data/v58.0/sobjects/ProfileSkillUser/quickActions","layouts":"/services/data/v58.0/sobjects/ProfileSkillUser/describe/layouts","sobject":"/services/data/v58.0/sobjects/ProfileSkillUser"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User Feed","labelPlural":"Skill User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserFeed/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ProfileSkillUser","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + User History","labelPlural":"Skill User History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ProfileSkillUserHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/{ID}","describe":"/services/data/v58.0/sobjects/ProfileSkillUserHistory/describe","sobject":"/services/data/v58.0/sobjects/ProfileSkillUserHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bs","label":"Prompt","labelPlural":"Prompts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Prompt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Prompt/{ID}","describe":"/services/data/v58.0/sobjects/Prompt/describe","sobject":"/services/data/v58.0/sobjects/Prompt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bu","label":"Prompt + Action","labelPlural":"Prompt Actions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptAction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptAction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptAction/describe","sobject":"/services/data/v58.0/sobjects/PromptAction"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptAction","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Action Share","labelPlural":"Prompt Action Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptActionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptActionShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptActionShare/describe","sobject":"/services/data/v58.0/sobjects/PromptActionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4Dr","label":"Prompt + Error","labelPlural":"Prompt Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptError","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptError/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/PromptError/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/PromptError/describe","sobject":"/services/data/v58.0/sobjects/PromptError"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"PromptError","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Prompt + Error Share","labelPlural":"Prompt Error Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptErrorShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptErrorShare/{ID}","describe":"/services/data/v58.0/sobjects/PromptErrorShare/describe","sobject":"/services/data/v58.0/sobjects/PromptErrorShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0bt","label":"Prompt + Version","labelPlural":"Prompt Versions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PromptVersion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PromptVersion/{ID}","describe":"/services/data/v58.0/sobjects/PromptVersion/describe","sobject":"/services/data/v58.0/sobjects/PromptVersion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4pb","label":"Publisher","labelPlural":"Publishers","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Publisher","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Publisher/{ID}","describe":"/services/data/v58.0/sobjects/Publisher/describe","sobject":"/services/data/v58.0/sobjects/Publisher"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0IF","label":"Push + Topic","labelPlural":"Push Topics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"PushTopic","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/PushTopic/{ID}","describe":"/services/data/v58.0/sobjects/PushTopic/describe","sobject":"/services/data/v58.0/sobjects/PushTopic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03g","label":"Queue + sObject","labelPlural":"Queue sObjects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QueueSobject","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QueueSobject/{ID}","describe":"/services/data/v58.0/sobjects/QueueSobject/describe","sobject":"/services/data/v58.0/sobjects/QueueSobject"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"574","label":"Quick + Text","labelPlural":"Quick Text","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"QuickText","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/QuickText/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/QuickText/{ID}","describe":"/services/data/v58.0/sobjects/QuickText/describe","layouts":"/services/data/v58.0/sobjects/QuickText/describe/layouts","sobject":"/services/data/v58.0/sobjects/QuickText"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Change Event","labelPlural":"Quick Text Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/QuickTextChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/QuickTextChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/QuickTextChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"QuickText","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text History","labelPlural":"Quick Text History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextHistory/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextHistory/describe","sobject":"/services/data/v58.0/sobjects/QuickTextHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickText","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Share","labelPlural":"Quick Text Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5QL","label":"Quick + Text Usage","labelPlural":"Quick Text Usages","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsage/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/QuickTextUsage/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/QuickTextUsage/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsage"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"QuickTextUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Quick + Text Usage Share","labelPlural":"Quick Text Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuickTextUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuickTextUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/QuickTextUsageShare/describe","sobject":"/services/data/v58.0/sobjects/QuickTextUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0QR","label":"Quote + Template Rich Text Data","labelPlural":"Quote Template Rich Text Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"QuoteTemplateRichTextData","queryable":false,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/{ID}","describe":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData/describe","sobject":"/services/data/v58.0/sobjects/QuoteTemplateRichTextData"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Line_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Stripe Coupon Association","labelPlural":"Change Event: + Quote Line Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1P","label":"Quote + Line Stripe Coupon Association","labelPlural":"Quote Line Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Line_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Line_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon_Association__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon Association","labelPlural":"Change Event: Quote + Stripe Coupon Association","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1Q","label":"Quote + Stripe Coupon Association","labelPlural":"Quote Stripe Coupon Associations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon_Association__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Quote_Stripe_Coupon__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Stripe Coupon","labelPlural":"Change Event: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Quote_Stripe_Coupon__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Stripe Coupon","labelPlural":"Share: Quote Stripe Coupon","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/{ID}","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share/describe","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1R","label":"Quote + Stripe Coupon","labelPlural":"Quote Stripe Coupons","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Quote_Stripe_Coupon__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe","quickActions":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/quickActions","layouts":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recently + Viewed","labelPlural":"Recently Viewed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecentlyViewed","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecentlyViewed/{ID}","describe":"/services/data/v58.0/sobjects/RecentlyViewed/describe","sobject":"/services/data/v58.0/sobjects/RecentlyViewed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0pr","label":"Recommendation","labelPlural":"Recommendations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Recommendation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Recommendation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Recommendation/{ID}","describe":"/services/data/v58.0/sobjects/Recommendation/describe","layouts":"/services/data/v58.0/sobjects/Recommendation/describe/layouts","sobject":"/services/data/v58.0/sobjects/Recommendation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Recommendation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recommendation + Change Event","labelPlural":"Recommendation Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecommendationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecommendationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecommendationChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rr","label":"Recommendation + Response","labelPlural":"Recommendation Responses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecommendationResponse","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecommendationResponse/{ID}","describe":"/services/data/v58.0/sobjects/RecommendationResponse/describe","sobject":"/services/data/v58.0/sobjects/RecommendationResponse"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Rw","label":"RecordAction","labelPlural":"RecordActions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordAction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordAction/{ID}","describe":"/services/data/v58.0/sobjects/RecordAction/describe","sobject":"/services/data/v58.0/sobjects/RecordAction"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ub","label":"RecordActionHistory","labelPlural":"RecordActionHistories","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordActionHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordActionHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordActionHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordActionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"012","label":"Record + Type","labelPlural":"Record Types","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"RecordType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordType/{ID}","describe":"/services/data/v58.0/sobjects/RecordType/describe","sobject":"/services/data/v58.0/sobjects/RecordType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hr","label":"Recordset + Filter Criteria","labelPlural":"Recordset Filter Criteria","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteria","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteria/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteria"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Change Event","labelPlural":"Recordset Filter Criteria Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val RecordsetFilterCriteria not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFilterCriteria","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria History","labelPlural":"Recordset Filter Criteria History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hK","label":"Recordset + Filter Criteria Rule","labelPlural":"Recordset Filter Criteria Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFilterCriteriaRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFilterCriteriaRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Rule Change Event","labelPlural":"Recordset Filter Criteria + Rule Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"RecordsetFilterCriteria","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Share","labelPlural":"Recordset Filter Criteria Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFilterCriteriaShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFilterCriteriaShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0yH","label":"Recordset + Filter Criteria Monitor","labelPlural":"Recordset Filter Criteria Monitors","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"RecordsetFltrCritMonitor","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe","quickActions":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/quickActions","layouts":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor/describe/layouts","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitor"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Change Event","labelPlural":"Recordset Filter Criteria + Monitor Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor Feed","labelPlural":"Recordset Filter Criteria Monitor + Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"RecordsetFltrCritMonitor","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Recordset + Filter Criteria Monitor History","labelPlural":"Recordset Filter Criteria + Monitor History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RecordsetFltrCritMonitorHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/{ID}","describe":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory/describe","sobject":"/services/data/v58.0/sobjects/RecordsetFltrCritMonitorHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9V6","label":"Allow + URL for Redirects","labelPlural":"Allow URLs for Redirects","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RedirectWhitelistUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/{ID}","describe":"/services/data/v58.0/sobjects/RedirectWhitelistUrl/describe","sobject":"/services/data/v58.0/sobjects/RedirectWhitelistUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0cb","label":"Refund","labelPlural":"Refunds","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Refund","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Refund/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Refund/{ID}","describe":"/services/data/v58.0/sobjects/Refund/describe","quickActions":"/services/data/v58.0/sobjects/Refund/quickActions","layouts":"/services/data/v58.0/sobjects/Refund/describe/layouts","sobject":"/services/data/v58.0/sobjects/Refund"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0dR","label":"Refund + Line Payment","labelPlural":"Refund Line Payments","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"RefundLinePayment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/RefundLinePayment/{ID}","describe":"/services/data/v58.0/sobjects/RefundLinePayment/describe","quickActions":"/services/data/v58.0/sobjects/RefundLinePayment/quickActions","layouts":"/services/data/v58.0/sobjects/RefundLinePayment/describe/layouts","sobject":"/services/data/v58.0/sobjects/RefundLinePayment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rc","label":"Related + List Column Definition","labelPlural":"Related List Column Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListColumnDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListColumnDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListColumnDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0rl","label":"Related + List Definition","labelPlural":"Related List Definition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelatedListDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelatedListDefinition/{ID}","describe":"/services/data/v58.0/sobjects/RelatedListDefinition/describe","sobject":"/services/data/v58.0/sobjects/RelatedListDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jv","label":"Relationship + Domain","labelPlural":"Relationship Domains","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipDomain","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipDomain/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipDomain/describe","sobject":"/services/data/v58.0/sobjects/RelationshipDomain"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ju","label":"Relationship","labelPlural":"Relationships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RelationshipInfo","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RelationshipInfo/{ID}","describe":"/services/data/v58.0/sobjects/RelationshipInfo/describe","sobject":"/services/data/v58.0/sobjects/RelationshipInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VA","label":"Remote + Key Callout Event","labelPlural":"Remote Key Callout Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"RemoteKeyCalloutEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/eventSchema","describe":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent/describe","sobject":"/services/data/v58.0/sobjects/RemoteKeyCalloutEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00O","label":"Report","labelPlural":"Reports","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Report","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Report/{ID}","listviews":"/services/data/v58.0/sobjects/Report/listviews","describe":"/services/data/v58.0/sobjects/Report/describe","sobject":"/services/data/v58.0/sobjects/Report"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yv","label":"Report + Anomaly Event","labelPlural":"Report Anomaly Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportAnomalyEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReportAnomalyEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Z7","label":"Report + Anomaly Event Store","labelPlural":"Report Anomaly Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReportAnomalyEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe","quickActions":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/ReportAnomalyEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReportAnomalyEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Anomaly Event Store Feed","labelPlural":"Report Anomaly Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportAnomalyEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportAnomalyEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qu","label":"Report + Event","labelPlural":"Report Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEvent/{ID}","describe":"/services/data/v58.0/sobjects/ReportEvent/describe","sobject":"/services/data/v58.0/sobjects/ReportEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ol","label":"Report + Event Stream","labelPlural":"Report Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReportEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/ReportEventStream/describe","sobject":"/services/data/v58.0/sobjects/ReportEventStream"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Report","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Report + Feed","labelPlural":"Report Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReportFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReportFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReportFeed/describe","sobject":"/services/data/v58.0/sobjects/ReportFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hw","label":"Resource + Absence","labelPlural":"Resource Absences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourceAbsence","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsence/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourceAbsence/describe","quickActions":"/services/data/v58.0/sobjects/ResourceAbsence/quickActions","layouts":"/services/data/v58.0/sobjects/ResourceAbsence/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourceAbsence"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Change Event","labelPlural":"Resource Absence Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence Feed","labelPlural":"Resource Absence Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourceAbsence","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Absence History","labelPlural":"Resource Absence History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourceAbsenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourceAbsenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourceAbsenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Kz","label":"Resource + Preference","labelPlural":"Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ResourcePreference/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ResourcePreference/describe","layouts":"/services/data/v58.0/sobjects/ResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ResourcePreference"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Change Event","labelPlural":"Resource Preference Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference Feed","labelPlural":"Resource Preference Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Preference History","labelPlural":"Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"2oN","label":"Return + Order","labelPlural":"Return Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrder/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrder/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Change Event","labelPlural":"Return Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Feed","labelPlural":"Return Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order History","labelPlural":"Return Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Sn","label":"Return + Order Line Item","labelPlural":"Return Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ReturnOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/ReturnOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/ReturnOrderLineItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Change Event","labelPlural":"Return Order Line Item Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item Feed","labelPlural":"Return Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ReturnOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Line Item History","labelPlural":"Return Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderLineItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ReturnOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Return + Order Share","labelPlural":"Return Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ReturnOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ReturnOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/ReturnOrderShare/describe","sobject":"/services/data/v58.0/sobjects/ReturnOrderShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Set","labelPlural":"Change Event: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__AttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Attribute Set","labelPlural":"Share: Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a00","label":"Attribute + Set","labelPlural":"Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__AttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__AttributeValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Value","labelPlural":"Change Event: Attribute Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a01","label":"Attribute + Value","labelPlural":"Attribute Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__AttributeValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__AttributeValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__BlockPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Block Price","labelPlural":"Change Event: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__BlockPrice__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Block Price","labelPlural":"Share: Block Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a02","label":"Block + Price","labelPlural":"Block Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__BlockPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__BlockPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ColumnMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Column Metadata","labelPlural":"Change Event: Column Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ColumnMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a04","label":"Column + Metadata","labelPlural":"Columns Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ColumnMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ColumnMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Attribute","labelPlural":"Change Event: Configuration + Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ConfigurationAttribute__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Configuration Attribute","labelPlural":"Share: Configuration Attribute","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationAttribute__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a05","label":"Configuration + Attribute","labelPlural":"Configuration Attributes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ConfigurationAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ConfigurationRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Configuration Rule","labelPlural":"Change Event: Configuration Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a06","label":"Configuration + Rule","labelPlural":"Configuration Rules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ConfigurationRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ConfigurationRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Contracted Price","labelPlural":"Change Event: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__ContractedPrice__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Contracted Price","labelPlural":"History: Contracted Price","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a07","label":"Contracted + Price","labelPlural":"Contracted Prices","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ContractedPrice__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ContractedPrice__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Cost__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Cost","labelPlural":"Change Event: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Cost__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Cost","labelPlural":"Share: Cost","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a08","label":"Cost","labelPlural":"Costs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Cost__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Cost__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Cost__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Cost__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Cost__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomActionCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action Condition","labelPlural":"Change Event: Custom Action + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a09","label":"Custom + Action Condition","labelPlural":"Custom Action Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomActionCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomActionCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Action","labelPlural":"Change Event: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomAction__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Action","labelPlural":"Share: Custom Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomAction__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0A","label":"Custom + Action","labelPlural":"Custom Actions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__CustomScript__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Custom Script","labelPlural":"Change Event: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__CustomScript__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Custom Script","labelPlural":"Share: Custom Script","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__CustomScript__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0C","label":"Custom + Script","labelPlural":"Custom Scripts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__CustomScript__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__CustomScript__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Dimension__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Dimension","labelPlural":"Change Event: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Dimension__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Dimension","labelPlural":"Share: Price Dimension","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0D","label":"Price + Dimension","labelPlural":"Price Dimensions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Dimension__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Dimension__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Dimension__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountCategory__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Category","labelPlural":"Change Event: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountCategory__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Category","labelPlural":"Share: Discount Category","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountCategory__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0E","label":"Discount + Category","labelPlural":"Discount Categories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountCategory__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountCategory__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Schedule","labelPlural":"Change Event: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Schedule","labelPlural":"History: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__DiscountSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Discount Schedule","labelPlural":"Share: Discount Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0G","label":"Discount + Schedule","labelPlural":"Discount Schedules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__DiscountSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Discount Tier","labelPlural":"Change Event: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__DiscountTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Discount Tier","labelPlural":"History: Discount Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0H","label":"Discount + Tier","labelPlural":"Discount Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__DiscountTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__DiscountTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ErrorCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Error Condition","labelPlural":"Change Event: Error Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0I","label":"Error + Condition","labelPlural":"Error Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ErrorCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ErrorCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteProduct__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Product","labelPlural":"Change Event: Favorite Product","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0J","label":"Favorite + Product","labelPlural":"Favorite Product","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteProduct__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteProduct__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FavoriteShare__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite Share","labelPlural":"Change Event: Favorite Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0K","label":"Favorite + Share","labelPlural":"Favorite Shares","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FavoriteShare__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FavoriteShare__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Favorite__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Favorite","labelPlural":"Change Event: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Favorite__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Favorite","labelPlural":"Share: Favorite","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Favorite__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0L","label":"Favorite","labelPlural":"Favorites","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Favorite__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Favorite__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Favorite__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Field Metadata","labelPlural":"Change Event: Field Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0M","label":"Field + Metadata","labelPlural":"Field Metadata","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: FieldSet Metadata","labelPlural":"Change Event: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__FieldSetMetadata__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + FieldSet Metadata","labelPlural":"Share: FieldSet Metadata","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__FieldSetMetadata__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0N","label":"FieldSet + Metadata","labelPlural":"FieldSets Metadata","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__FieldSetMetadata__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__FieldSetMetadata__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Column","labelPlural":"Change Event: Import Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Q","label":"Import + Column","labelPlural":"Import Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ImportFormat__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Import Format","labelPlural":"Change Event: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ImportFormat__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Import Format","labelPlural":"Share: Import Format","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ImportFormat__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0R","label":"Import + Format","labelPlural":"Import Formats","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ImportFormat__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ImportFormat__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Install Processor Log","labelPlural":"Change Event: Install Processor + Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__InstallProcessorLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Install Processor Log","labelPlural":"Share: Install Processor Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__InstallProcessorLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0S","label":"Install + Processor Log","labelPlural":"Install Processor Logs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__InstallProcessorLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__InstallProcessorLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LineColumn__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Line Column","labelPlural":"Change Event: Line Column","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0T","label":"Line + Column","labelPlural":"Line Columns","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LineColumn__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LineColumn__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Localization__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Localization","labelPlural":"Change Event: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Localization__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Localization","labelPlural":"Share: Localization","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Localization__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0U","label":"Localization","labelPlural":"Localizations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Localization__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Localization__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Localization__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Localization__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Localization__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupData__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Data","labelPlural":"Change Event: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupData__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Data","labelPlural":"Share: Lookup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0V","label":"Lookup + Data","labelPlural":"Lookup Data","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupData__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupData__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupData__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__LookupQuery__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Lookup Query","labelPlural":"Change Event: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__LookupQuery__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Lookup Query","labelPlural":"Share: Lookup Query","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0W","label":"Lookup + Query","labelPlural":"Lookup Queries","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__LookupQuery__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__LookupQuery__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OptionConstraint__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Option Constraint","labelPlural":"Change Event: Option Constraint","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0X","label":"Option + Constraint","labelPlural":"Option Constraints","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OptionConstraint__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OptionConstraint__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Rate","labelPlural":"Change Event: Order + Product Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Y","label":"Order + Product Consumption Rate","labelPlural":"Order Product Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Order Product Consumption Schedule","labelPlural":"Change Event: Order + Product Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__OrderItemConsumptionSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Order Product Consumption Schedule","labelPlural":"Share: Order Product Consumption + Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0Z","label":"Order + Product Consumption Schedule","labelPlural":"Order Product Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__OrderItemConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__OrderItemConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Action","labelPlural":"Change Event: Price Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0a","label":"Price + Action","labelPlural":"Price Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Condition","labelPlural":"Change Event: Price Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0b","label":"Price + Condition","labelPlural":"Price Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Rule","labelPlural":"Change Event: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Rule","labelPlural":"Share: Price Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0c","label":"Price + Rule","labelPlural":"Price Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PriceRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Schedule","labelPlural":"Change Event: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Schedule","labelPlural":"History: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PriceSchedule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Price Schedule","labelPlural":"Share: Price Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0d","label":"Price + Schedule","labelPlural":"Price Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Price Tier","labelPlural":"Change Event: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PriceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Price Tier","labelPlural":"History: Price Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0e","label":"Price + Tier","labelPlural":"Price Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PriceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PriceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance Tier","labelPlural":"Change Event: Pricing Guidance + Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidanceTier__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance Tier","labelPlural":"History: Pricing Guidance Tier","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0f","label":"Pricing + Guidance Tier","labelPlural":"Pricing Guidance Tiers","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidanceTier__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidanceTier__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Pricing Guidance","labelPlural":"Change Event: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__PricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Pricing Guidance","labelPlural":"History: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__PricingGuidance__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Pricing Guidance","labelPlural":"Share: Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__PricingGuidance__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0g","label":"Pricing + Guidance","labelPlural":"Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__PricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__PricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Condition","labelPlural":"Change Event: Process Input + Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0h","label":"Process + Input Condition","labelPlural":"Process Input Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input Values","labelPlural":"Change Event: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProcessInputValue__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Process Input Values","labelPlural":"Share: Process Input Values","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0i","label":"Process + Input Values","labelPlural":"Process Input Values","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInputValue__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInputValue__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProcessInput__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Process Input","labelPlural":"Change Event: Process Input","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0j","label":"Process + Input","labelPlural":"Process Inputs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProcessInput__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProcessInput__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAction__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Action","labelPlural":"Change Event: Product Action","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0k","label":"Product + Action","labelPlural":"Product Actions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAction__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAction__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Attribute Set","labelPlural":"Change Event: Product Attribute + Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductAttributeSet__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Attribute Set","labelPlural":"Share: Product Attribute Set","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0l","label":"Product + Attribute Set","labelPlural":"Product Attribute Sets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttributeSet__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttributeSet__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductAttribute__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Attribute Item","labelPlural":"Change Event: Attribute Item","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0m","label":"Attribute + Item","labelPlural":"Attribute Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductAttribute__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductAttribute__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductFeature__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Feature","labelPlural":"Change Event: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductFeature__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Feature","labelPlural":"Share: Product Feature","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0n","label":"Product + Feature","labelPlural":"Product Features","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductFeature__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductFeature__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductOption__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Option","labelPlural":"Change Event: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductOption__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Option","labelPlural":"Share: Product Option","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0o","label":"Product + Option","labelPlural":"Product Options","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductOption__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductOption__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__ProductRule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Product Rule","labelPlural":"Change Event: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__ProductRule__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Product Rule","labelPlural":"Share: Product Rule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__ProductRule__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0p","label":"Product + Rule","labelPlural":"Product Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__ProductRule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__ProductRule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Document","labelPlural":"Change Event: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteDocument__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Document","labelPlural":"History: Quote Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0q","label":"Quote + Document","labelPlural":"Quote Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteDocument__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteDocument__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Rate","labelPlural":"Change Event: Quote Line + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0r","label":"Quote + Line Consumption Rate","labelPlural":"Quote Line Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Consumption Schedule","labelPlural":"Change Event: Quote + Line Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0s","label":"Quote + Line Consumption Schedule","labelPlural":"Quote Line Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Group","labelPlural":"Change Event: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLineGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Group","labelPlural":"History: Quote Line Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0t","label":"Quote + Line Group","labelPlural":"Quote Line Groups","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLineGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLineGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line Pricing Guidance","labelPlural":"Change Event: Quote Line + Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLinePricingGuidance__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line Pricing Guidance","labelPlural":"History: Quote Line Pricing Guidance","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0u","label":"Quote + Line Pricing Guidance","labelPlural":"Quote Line Pricing Guidance","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLinePricingGuidance__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLinePricingGuidance__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Line","labelPlural":"Change Event: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Line","labelPlural":"History: Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__History"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0v","label":"Quote + Line","labelPlural":"Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteProcess__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Process","labelPlural":"Change Event: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteProcess__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Process","labelPlural":"Share: Quote Process","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteProcess__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0w","label":"Quote + Process","labelPlural":"Quote Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteProcess__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteProcess__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Template","labelPlural":"Change Event: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote Template","labelPlural":"History: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTemplate__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Template","labelPlural":"Share: Quote Template","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTemplate__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0x","label":"Quote + Template","labelPlural":"Quote Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTemplate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTemplate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__QuoteTerm__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote Term","labelPlural":"Change Event: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__QuoteTerm__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote Term","labelPlural":"Share: Quote Term","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__QuoteTerm__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0y","label":"Quote + Term","labelPlural":"Quote Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__QuoteTerm__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__QuoteTerm__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Quote","labelPlural":"Change Event: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__Quote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Quote","labelPlural":"History: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Quote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Quote","labelPlural":"Share: Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Quote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a0z","label":"Quote","labelPlural":"Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Quote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Quote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Quote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Quote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Quote__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RecordJob__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Record Job","labelPlural":"Change Event: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RecordJob__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Record Job","labelPlural":"Share: Record Job","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a10","label":"Record + Job","labelPlural":"Record Jobs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RecordJob__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RecordJob__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__RelatedContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Additional Document","labelPlural":"Change Event: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__RelatedContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Additional Document","labelPlural":"Share: Additional Document","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a12","label":"Additional + Document","labelPlural":"Additional Documents","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__RelatedContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__RelatedContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchFilter__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Filter","labelPlural":"Change Event: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchFilter__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Filter","labelPlural":"Share: Search Filter","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchFilter__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a14","label":"Search + Filter","labelPlural":"Search Filters","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SearchFilter__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchFilter__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SearchIndex__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Search Index","labelPlural":"Change Event: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SearchIndex__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Search Index","labelPlural":"Share: Search Index","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a15","label":"Search + Index","labelPlural":"Search Index","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SearchIndex__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SearchIndex__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Solution Group","labelPlural":"Change Event: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__SolutionGroup__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Solution Group","labelPlural":"History: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SolutionGroup__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Solution Group","labelPlural":"Share: Solution Group","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SolutionGroup__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a16","label":"Solution + Group","labelPlural":"Solution Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SolutionGroup__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SolutionGroup__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedAsset__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Asset","labelPlural":"Change Event: Subscribed Asset","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a17","label":"Subscribed + Asset","labelPlural":"Subscribed Assets","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedAsset__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedAsset__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscribed Quote Line","labelPlural":"Change Event: Subscribed Quote + Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SubscribedQuoteLine__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscribed Quote Line","labelPlural":"Share: Subscribed Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a18","label":"Subscribed + Quote Line","labelPlural":"Subscribed Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscribedQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscribedQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionRate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Rate","labelPlural":"Change Event: Subscription + Consumption Rate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a19","label":"Subscription + Consumption Rate","labelPlural":"Subscription Consumption Rates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionRate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionRate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SubscriptionConsumptionSchedule__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription Consumption Schedule","labelPlural":"Change Event: Subscription + Consumption Schedule","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1A","label":"Subscription + Consumption Schedule","labelPlural":"Subscription Consumption Schedules","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SubscriptionConsumptionSchedule__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SubscriptionConsumptionSchedule__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Subscription__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Subscription","labelPlural":"Change Event: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Subscription__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Subscription","labelPlural":"Share: Subscription","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1B","label":"Subscription","labelPlural":"Subscriptions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Subscription__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Subscription__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Subscription__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__SummaryVariable__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Summary Variable","labelPlural":"Change Event: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__SummaryVariable__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Summary Variable","labelPlural":"Share: Summary Variable","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__SummaryVariable__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1C","label":"Summary + Variable","labelPlural":"Summary Variables","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__SummaryVariable__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__SummaryVariable__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TaxExemptionCertificate__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Tax Exemption Certificate","labelPlural":"Change Event: Tax Exemption + Certificate","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1D","label":"Tax + Exemption Certificate","labelPlural":"Tax Exemption Certificates","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TaxExemptionCertificate__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TaxExemptionCertificate__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateContent__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Content","labelPlural":"Change Event: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TemplateContent__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Template Content","labelPlural":"Share: Template Content","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateContent__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1E","label":"Template + Content","labelPlural":"Template Content","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__TemplateContent__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateContent__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TemplateSection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Template Section","labelPlural":"Change Event: Template Section","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1F","label":"Template + Section","labelPlural":"Template Sections","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TemplateSection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TemplateSection__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TermCondition__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Term Condition","labelPlural":"Change Event: Term Condition","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1G","label":"Term + Condition","labelPlural":"Term Conditions","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TermCondition__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TermCondition__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__Theme__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Theme","labelPlural":"Change Event: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__Theme__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Theme","labelPlural":"Share: Theme","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__Theme__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1H","label":"Theme","labelPlural":"Themes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__Theme__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__Theme__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__Theme__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__Theme__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__Theme__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__TimingLog__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Timing Log","labelPlural":"Change Event: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__TimingLog__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Timing Log","labelPlural":"Share: Timing Log","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1I","label":"Timing + Log","labelPlural":"Timing Logs","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__TimingLog__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__TimingLog__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__UpgradeSource__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Upgrade Source","labelPlural":"Change Event: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__UpgradeSource__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Upgrade Source","labelPlural":"Share: Upgrade Source","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1J","label":"Upgrade + Source","labelPlural":"Upgrade Sources","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__UpgradeSource__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__UpgradeSource__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuoteLine__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote Line","labelPlural":"Change Event: Web Quote Line","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1K","label":"Web + Quote Line","labelPlural":"Web Quote Lines","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuoteLine__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuoteLine__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Web Quote","labelPlural":"Change Event: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__ChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SBQQ__WebQuote__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"History: + Web Quote","labelPlural":"History: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__History","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__History"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SBQQ__WebQuote__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Web Quote","labelPlural":"Share: Web Quote","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SBQQ__WebQuote__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/{ID}","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share/describe","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1L","label":"Web + Quote","labelPlural":"Web Quotes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SBQQ__WebQuote__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe","quickActions":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/quickActions","layouts":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/SBQQ__WebQuote__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J4","label":"Service + Provider SAML Attribute","labelPlural":"Service Provider SAML Attributes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SPSamlAttributes","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SPSamlAttributes/{ID}","describe":"/services/data/v58.0/sobjects/SPSamlAttributes/describe","sobject":"/services/data/v58.0/sobjects/SPSamlAttributes"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0LE","label":"SAML + Single Sign-On Setting","labelPlural":"SAML Single Sign-On Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SamlSsoConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SamlSsoConfig/{ID}","describe":"/services/data/v58.0/sobjects/SamlSsoConfig/describe","sobject":"/services/data/v58.0/sobjects/SamlSsoConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hA","label":"Scheduling + Constraint","labelPlural":"Scheduling Constraints","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingConstraint","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraint/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SchedulingConstraint/describe","layouts":"/services/data/v58.0/sobjects/SchedulingConstraint/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingConstraint"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SchedulingConstraint","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scheduling + Constraint Share","labelPlural":"Scheduling Constraint Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingConstraintShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingConstraintShare/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingConstraintShare/describe","sobject":"/services/data/v58.0/sobjects/SchedulingConstraintShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0no","label":"Scheduling + Objective","labelPlural":"Scheduling Objectives","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingObjective","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjective/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjective/describe","layouts":"/services/data/v58.0/sobjects/SchedulingObjective/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingObjective"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0np","label":"Scheduling + Objective Parameter","labelPlural":"Scheduling Objective Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingObjectiveParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingObjectiveParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Md","label":"Scheduling + Rule","labelPlural":"Scheduling Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SchedulingRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SchedulingRule/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRule/describe","layouts":"/services/data/v58.0/sobjects/SchedulingRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SchedulingRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hm","label":"Scheduling + Rule Parameter","labelPlural":"Scheduling Rule Parameters","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SchedulingRuleParameter","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SchedulingRuleParameter/{ID}","describe":"/services/data/v58.0/sobjects/SchedulingRuleParameter/describe","sobject":"/services/data/v58.0/sobjects/SchedulingRuleParameter"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01N","label":"Custom + S-Control","labelPlural":"Custom S-Controls","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Scontrol","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Scontrol/{ID}","describe":"/services/data/v58.0/sobjects/Scontrol/describe","sobject":"/services/data/v58.0/sobjects/Scontrol"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01f","label":"Scorecard","labelPlural":"Scorecards","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Scorecard","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Scorecard/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Scorecard/{ID}","describe":"/services/data/v58.0/sobjects/Scorecard/describe","layouts":"/services/data/v58.0/sobjects/Scorecard/describe/layouts","sobject":"/services/data/v58.0/sobjects/Scorecard"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qn","label":"Scorecard + Association","labelPlural":"Scorecard Associations","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ScorecardAssociation","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardAssociation/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardAssociation/describe","layouts":"/services/data/v58.0/sobjects/ScorecardAssociation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardAssociation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Om","label":"Scorecard + Metric","labelPlural":"Scorecard Metrics","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ScorecardMetric","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ScorecardMetric/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardMetric/describe","layouts":"/services/data/v58.0/sobjects/ScorecardMetric/describe/layouts","sobject":"/services/data/v58.0/sobjects/ScorecardMetric"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Scorecard","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Scorecard + Share","labelPlural":"Scorecard Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ScorecardShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ScorecardShare/{ID}","describe":"/services/data/v58.0/sobjects/ScorecardShare/describe","sobject":"/services/data/v58.0/sobjects/ScorecardShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4co","label":"Search + Layout","labelPlural":"Search Layouts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SearchLayout","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchLayout/{ID}","describe":"/services/data/v58.0/sobjects/SearchLayout/describe","sobject":"/services/data/v58.0/sobjects/SearchLayout"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0MD","label":"Promoted + Search Term","labelPlural":"Promoted Search Terms","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SearchPromotionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SearchPromotionRule/{ID}","describe":"/services/data/v58.0/sobjects/SearchPromotionRule/describe","layouts":"/services/data/v58.0/sobjects/SearchPromotionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/SearchPromotionRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09v","label":"Security + Custom Baseline","labelPlural":"Security Custom Baselines","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SecurityCustomBaseline","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SecurityCustomBaseline/{ID}","describe":"/services/data/v58.0/sobjects/SecurityCustomBaseline/describe","sobject":"/services/data/v58.0/sobjects/SecurityCustomBaseline"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0q6","label":"Seller","labelPlural":"Sellers","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Seller","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Seller/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Seller/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Seller/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Seller/describe","layouts":"/services/data/v58.0/sobjects/Seller/describe/layouts","sobject":"/services/data/v58.0/sobjects/Seller"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Seller","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + History","labelPlural":"Seller History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerHistory/{ID}","describe":"/services/data/v58.0/sobjects/SellerHistory/describe","sobject":"/services/data/v58.0/sobjects/SellerHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Seller","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Seller + Share","labelPlural":"Seller Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SellerShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SellerShare/{ID}","describe":"/services/data/v58.0/sobjects/SellerShare/describe","sobject":"/services/data/v58.0/sobjects/SellerShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sentry_Active_Config__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sentry Active Config","labelPlural":"Change Event: Sentry Active Config","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1S","label":"Sentry + Active Config","labelPlural":"Sentry Active Config","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Sentry_Active_Config__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe","quickActions":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sentry_Active_Config__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Active_Config__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m00","label":"Sentry + Config","labelPlural":"Sentry Configs","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sentry_Config__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Config__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe","layouts":"/services/data/v58.0/sobjects/Sentry_Config__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sentry_Config__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"e00","label":"Sentry + Error","labelPlural":"Sentry Errors","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sentry_Error__e","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sentry_Error__e/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sentry_Error__e/eventSchema","describe":"/services/data/v58.0/sobjects/Sentry_Error__e/describe","sobject":"/services/data/v58.0/sobjects/Sentry_Error__e"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jR","label":"Serialized + Product","labelPlural":"Serialized Products","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProduct","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProduct/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProduct/describe","quickActions":"/services/data/v58.0/sobjects/SerializedProduct/quickActions","layouts":"/services/data/v58.0/sobjects/SerializedProduct/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProduct"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Feed","labelPlural":"Serialized Product Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProduct","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product History","labelPlural":"Serialized Product History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SerializedProduct","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Share","labelPlural":"Serialized Product Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductShare/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductShare/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0jM","label":"Serialized + Product Transaction","labelPlural":"Serialized Product Transactions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SerializedProductTransaction","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransaction/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe","layouts":"/services/data/v58.0/sobjects/SerializedProductTransaction/describe/layouts","sobject":"/services/data/v58.0/sobjects/SerializedProductTransaction"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction Feed","labelPlural":"Serialized Product Transaction Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SerializedProductTransaction","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Serialized + Product Transaction History","labelPlural":"Serialized Product Transaction History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SerializedProductTransactionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory/describe","sobject":"/services/data/v58.0/sobjects/SerializedProductTransactionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08p","label":"Service + Appointment","labelPlural":"Service Appointments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceAppointment/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointment/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointment/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VR","label":"Service + Appointment Capacity Usage","labelPlural":"Service Appointment Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceAppointmentCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe","quickActions":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage Feed","labelPlural":"Service Appointment Capacity + Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointmentCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Capacity Usage History","labelPlural":"Service Appointment Capacity + Usage History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentCapacityUsageHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentCapacityUsageHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Change Event","labelPlural":"Service Appointment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Feed","labelPlural":"Service Appointment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceAppointment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment History","labelPlural":"Service Appointment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceAppointment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Share","labelPlural":"Service Appointment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Appointment Status Value","labelPlural":"Service Appointment Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceAppointmentStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/{ID}","describe":"/services/data/v58.0/sobjects/ServiceAppointmentStatus/describe","sobject":"/services/data/v58.0/sobjects/ServiceAppointmentStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"810","label":"Service + Contract","labelPlural":"Service Contracts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceContract","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceContract/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceContract/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceContract/describe","quickActions":"/services/data/v58.0/sobjects/ServiceContract/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceContract/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceContract"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Change Event","labelPlural":"Service Contract Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceContractChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Feed","labelPlural":"Service Contract Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceContract","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract History","labelPlural":"Service Contract History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceContract","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Contract Share","labelPlural":"Service Contract Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceContractShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceContractShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceContractShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceContractShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cr","label":"Service + Crew","labelPlural":"Service Crews","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrew","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrew/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrew/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrew/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrew/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrew"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Change Event","labelPlural":"Service Crew Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Feed","labelPlural":"Service Crew Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrew","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew History","labelPlural":"Service Crew History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1cm","label":"Service + Crew Member","labelPlural":"Service Crew Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceCrewMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceCrewMember/describe","quickActions":"/services/data/v58.0/sobjects/ServiceCrewMember/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceCrewMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceCrewMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Change Event","labelPlural":"Service Crew Member Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member Feed","labelPlural":"Service Crew Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceCrewMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Member History","labelPlural":"Service Crew Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceCrew","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Crew Share","labelPlural":"Service Crew Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceCrewShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceCrewShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceCrewShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceCrewShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SR","label":"Service + Report","labelPlural":"Service Reports","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReport","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReport/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReport/describe","sobject":"/services/data/v58.0/sobjects/ServiceReport"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Change Event","labelPlural":"Service Report Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportChangeEvent"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceReport","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report History","labelPlural":"Service Report History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0SL","label":"Service + Report Layout","labelPlural":"Service Report Layouts","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"ServiceReportLayout","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayout/{ID}","describe":"/services/data/v58.0/sobjects/ServiceReportLayout/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayout"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceReportLayout","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Report Layout Change Event","labelPlural":"Service Report Layout Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceReportLayoutChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceReportLayoutChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hn","label":"Service + Resource","labelPlural":"Service Resources","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResource/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResource/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResource/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResource/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResource/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hy","label":"Resource + Capacity","labelPlural":"Resource Capacities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceCapacity","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacity/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourceCapacity/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourceCapacity/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacity"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Change Event","labelPlural":"Resource Capacity Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity Feed","labelPlural":"Resource Capacity Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceCapacity","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Resource + Capacity History","labelPlural":"Resource Capacity History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceCapacityHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceCapacityHistory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Change Event","labelPlural":"Service Resource Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Feed","labelPlural":"Service Resource Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResource","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource History","labelPlural":"Service Resource History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0l6","label":"Service + Resource Preference","labelPlural":"Service Resource Preferences","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourcePreference","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreference/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe","quickActions":"/services/data/v58.0/sobjects/ServiceResourcePreference/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceResourcePreference/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreference"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ServiceResourcePreference not found in section + StandardFeedLabel","labelPlural":"__MISSING LABEL__ PropertyFile - val ServiceResourcePreference + not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourcePreference","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference History","labelPlural":"Service Resource Preference History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResourcePreference","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Preference Share","labelPlural":"Service Resource Preference Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourcePreferenceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourcePreferenceShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceResource","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Share","labelPlural":"Service Resource Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hv","label":"Service + Resource Skill","labelPlural":"Service Resource Skills","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceResourceSkill","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkill/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe","layouts":"/services/data/v58.0/sobjects/ServiceResourceSkill/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Change Event","labelPlural":"Service Resource Skill Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill Feed","labelPlural":"Service Resource Skill Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceResourceSkill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Resource Skill History","labelPlural":"Service Resource Skill History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceResourceSkillHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceResourceSkillHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"9gd","label":"Service + Setup Provisioning","labelPlural":"Service Setup Provisionings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceSetupProvisioning","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/{ID}","describe":"/services/data/v58.0/sobjects/ServiceSetupProvisioning/describe","sobject":"/services/data/v58.0/sobjects/ServiceSetupProvisioning"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hh","label":"Service + Territory","labelPlural":"Service Territories","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritory/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritory/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritory/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritory/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritory"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Change Event","labelPlural":"Service Territory Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Feed","labelPlural":"Service Territory Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritory","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory History","labelPlural":"Service Territory History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1Sl","label":"Service + Territory Location","labelPlural":"Service Territory Locations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocation","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe","quickActions":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/quickActions","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryLocation/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocation"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Change Event","labelPlural":"Service Territory Location + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Location Feed","labelPlural":"Service Territory Location Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryLocation","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Territory + Location History","labelPlural":"Territory Location History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryLocationHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryLocationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hu","label":"Service + Territory Member","labelPlural":"Service Territory Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ServiceTerritoryMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe","layouts":"/services/data/v58.0/sobjects/ServiceTerritoryMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMember"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Change Event","labelPlural":"Service Territory Member Change + Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member Feed","labelPlural":"Service Territory Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ServiceTerritoryMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Member History","labelPlural":"Service Territory Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ServiceTerritory","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Service + Territory Share","labelPlural":"Service Territory Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ServiceTerritoryShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ServiceTerritoryShare/{ID}","describe":"/services/data/v58.0/sobjects/ServiceTerritoryShare/describe","sobject":"/services/data/v58.0/sobjects/ServiceTerritoryShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zh","label":"Session + Hijacking Event","labelPlural":"Session Hijacking Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEvent","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SessionHijackingEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SessionHijackingEvent/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Zj","label":"Session + Hijacking Event Store","labelPlural":"Session Hijacking Event Stores","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SessionHijackingEventStore","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStore/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe","quickActions":"/services/data/v58.0/sobjects/SessionHijackingEventStore/quickActions","layouts":"/services/data/v58.0/sobjects/SessionHijackingEventStore/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStore"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SessionHijackingEventStore","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Session + Hijacking Event Store Feed","labelPlural":"Session Hijacking Event Store Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SessionHijackingEventStoreFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/{ID}","describe":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed/describe","sobject":"/services/data/v58.0/sobjects/SessionHijackingEventStoreFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5Pa","label":"Session + Permission Set Activation","labelPlural":"Session Permission Set Activations","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"SessionPermSetActivation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SessionPermSetActivation/{ID}","describe":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe","layouts":"/services/data/v58.0/sobjects/SessionPermSetActivation/describe/layouts","sobject":"/services/data/v58.0/sobjects/SessionPermSetActivation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3Ys","label":"Setup + Assistant Step","labelPlural":"Setup Assistant Steps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAssistantStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAssistantStep/{ID}","describe":"/services/data/v58.0/sobjects/SetupAssistantStep/describe","sobject":"/services/data/v58.0/sobjects/SetupAssistantStep"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ym","label":"Setup + Audit Trail Entry","labelPlural":"Setup Audit Trail Entries","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupAuditTrail","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupAuditTrail/{ID}","describe":"/services/data/v58.0/sobjects/SetupAuditTrail/describe","sobject":"/services/data/v58.0/sobjects/SetupAuditTrail"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0J0","label":"Setup + Entity Access","labelPlural":"Setup Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/SetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/SetupEntityAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m01","label":"Setup + Configuration Data","labelPlural":"Setup Configuration Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Configuration_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Configuration_Data__mdt"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"m02","label":"Setup + Connection Data","labelPlural":"Setup Connection Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Connection_Data__mdt","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe","layouts":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Connection_Data__mdt"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Data__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Data","labelPlural":"Change Event: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Setup_Data__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Setup Data","labelPlural":"Share: Setup Data","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Data__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__Share/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Data__Share/describe","sobject":"/services/data/v58.0/sobjects/Setup_Data__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1T","label":"Setup + Data","labelPlural":"Setup Data","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Setup_Data__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Setup_Data__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Setup_Data__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Data__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Data__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Data__c"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Setup_Settings__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Setup Settings","labelPlural":"Change Event: Setup Settings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Setup_Settings__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1U","label":"Setup + Settings","labelPlural":"Setup Settings","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Setup_Settings__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Setup_Settings__c/{ID}","describe":"/services/data/v58.0/sobjects/Setup_Settings__c/describe","quickActions":"/services/data/v58.0/sobjects/Setup_Settings__c/quickActions","layouts":"/services/data/v58.0/sobjects/Setup_Settings__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Setup_Settings__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0a0","label":"Shift","labelPlural":"Shifts","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shift","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shift/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shift/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shift/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shift/describe","quickActions":"/services/data/v58.0/sobjects/Shift/quickActions","layouts":"/services/data/v58.0/sobjects/Shift/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shift"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Change Event","labelPlural":"Shift Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Feed","labelPlural":"Shift Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shift","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + History","labelPlural":"Shift History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w1","label":"Shift + Pattern","labelPlural":"Shift Patterns","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPattern","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPattern/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShiftPattern/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPattern/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPattern/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPattern"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Change Event","labelPlural":"Shift Pattern Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1w2","label":"Shift + Pattern Entry","labelPlural":"Shift Pattern Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftPatternEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntry/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe","quickActions":"/services/data/v58.0/sobjects/ShiftPatternEntry/quickActions","layouts":"/services/data/v58.0/sobjects/ShiftPatternEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Change Event","labelPlural":"Shift Pattern Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry Feed","labelPlural":"Shift Pattern Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPatternEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Entry History","labelPlural":"Shift Pattern Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Feed","labelPlural":"Shift Pattern Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternFeed/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShiftPattern","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern History","labelPlural":"Shift Pattern History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternHistory/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftPattern","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Pattern Share","labelPlural":"Shift Pattern Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftPatternShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftPatternShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftPatternShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftPatternShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shift","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Share","labelPlural":"Shift Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Status Value","labelPlural":"Shift Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftStatus/{ID}","describe":"/services/data/v58.0/sobjects/ShiftStatus/describe","sobject":"/services/data/v58.0/sobjects/ShiftStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0iJ","label":"Shift + Template","labelPlural":"Shift Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ShiftTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplate/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplate/describe","layouts":"/services/data/v58.0/sobjects/ShiftTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShiftTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"ShiftTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Change Event","labelPlural":"Shift Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"ShiftTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shift + Template Share","labelPlural":"Shift Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShiftTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShiftTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/ShiftTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/ShiftTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OB","label":"Shipment","labelPlural":"Shipments","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Shipment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Shipment/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Shipment/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Shipment/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Shipment/describe","quickActions":"/services/data/v58.0/sobjects/Shipment/quickActions","layouts":"/services/data/v58.0/sobjects/Shipment/describe/layouts","sobject":"/services/data/v58.0/sobjects/Shipment"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Change Event","labelPlural":"Shipment Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/ShipmentChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/ShipmentChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/ShipmentChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Feed","labelPlural":"Shipment Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Shipment","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + History","labelPlural":"Shipment History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0ob","label":"Shipment + Item","labelPlural":"Shipment Items","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"ShipmentItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ShipmentItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/ShipmentItem/describe","quickActions":"/services/data/v58.0/sobjects/ShipmentItem/quickActions","layouts":"/services/data/v58.0/sobjects/ShipmentItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/ShipmentItem"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemFeed/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"ShipmentItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val ShipmentItem not found in section StandardHistoryLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentItemHistory/describe","sobject":"/services/data/v58.0/sobjects/ShipmentItemHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Shipment","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Shipment + Share","labelPlural":"Shipment Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ShipmentShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ShipmentShare/{ID}","describe":"/services/data/v58.0/sobjects/ShipmentShare/describe","sobject":"/services/data/v58.0/sobjects/ShipmentShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0DM","label":"Site","labelPlural":"Sites","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Site","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Site/{ID}","describe":"/services/data/v58.0/sobjects/Site/describe","sobject":"/services/data/v58.0/sobjects/Site"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0GV","label":"Site + Detail","labelPlural":"Site Details","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteDetail","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteDetail/{ID}","describe":"/services/data/v58.0/sobjects/SiteDetail/describe","sobject":"/services/data/v58.0/sobjects/SiteDetail"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site","labelPlural":"Site","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteFeed/{ID}","describe":"/services/data/v58.0/sobjects/SiteFeed/describe","sobject":"/services/data/v58.0/sobjects/SiteFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Site","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Site + History","labelPlural":"Site History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteHistory/{ID}","describe":"/services/data/v58.0/sobjects/SiteHistory/describe","sobject":"/services/data/v58.0/sobjects/SiteHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xs","label":"Trusted + Domains for Inline Frames","labelPlural":"Trusted Domains for Inline Frames","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteIframeWhiteListUrl","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/{ID}","describe":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl/describe","sobject":"/services/data/v58.0/sobjects/SiteIframeWhiteListUrl"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0H0","label":"Site + Redirect Mapping","labelPlural":"Site Redirect Mapping","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SiteRedirectMapping","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SiteRedirectMapping/{ID}","describe":"/services/data/v58.0/sobjects/SiteRedirectMapping/describe","sobject":"/services/data/v58.0/sobjects/SiteRedirectMapping"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0C5","label":"Skill","labelPlural":"Skills","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"Skill","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Skill/{ID}","describe":"/services/data/v58.0/sobjects/Skill/describe","sobject":"/services/data/v58.0/sobjects/Skill"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Skill","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Change Event","labelPlural":"Skill Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hx","label":"Skill + Requirement","labelPlural":"Skill Requirements","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SkillRequirement","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SkillRequirement/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SkillRequirement/describe","layouts":"/services/data/v58.0/sobjects/SkillRequirement/describe/layouts","sobject":"/services/data/v58.0/sobjects/SkillRequirement"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Change Event","labelPlural":"Skill Requirement Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement Feed","labelPlural":"Skill Requirement Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementFeed/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementFeed/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SkillRequirement","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Skill + Requirement History","labelPlural":"Skill Requirement History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillRequirementHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillRequirementHistory/{ID}","describe":"/services/data/v58.0/sobjects/SkillRequirementHistory/describe","sobject":"/services/data/v58.0/sobjects/SkillRequirementHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"13B","label":"Skill + Type","labelPlural":"Skill Types","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SkillType","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SkillType/{ID}","describe":"/services/data/v58.0/sobjects/SkillType/describe","sobject":"/services/data/v58.0/sobjects/SkillType"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"552","label":"Entitlement + Process","labelPlural":"Entitlement Processes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SlaProcess","queryable":true,"replicateable":false,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SlaProcess/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SlaProcess/{ID}","describe":"/services/data/v58.0/sobjects/SlaProcess/describe","layouts":"/services/data/v58.0/sobjects/SlaProcess/describe/layouts","sobject":"/services/data/v58.0/sobjects/SlaProcess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"501","label":"Solution","labelPlural":"Solutions","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Solution","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Solution/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Solution/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Solution/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Solution/describe","layouts":"/services/data/v58.0/sobjects/Solution/describe/layouts","sobject":"/services/data/v58.0/sobjects/Solution"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Feed","labelPlural":"Solution Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionFeed/{ID}","describe":"/services/data/v58.0/sobjects/SolutionFeed/describe","sobject":"/services/data/v58.0/sobjects/SolutionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Solution","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + History","labelPlural":"Solution History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionHistory/{ID}","describe":"/services/data/v58.0/sobjects/SolutionHistory/describe","sobject":"/services/data/v58.0/sobjects/SolutionHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Solution + Status Value","labelPlural":"Solution Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SolutionStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SolutionStatus/{ID}","describe":"/services/data/v58.0/sobjects/SolutionStatus/describe","sobject":"/services/data/v58.0/sobjects/SolutionStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Xv","label":"Source + Change Notification","labelPlural":"Source Change Notification","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SourceChangeNotification","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SourceChangeNotification/{ID}","eventSchema":"/services/data/v58.0/sobjects/SourceChangeNotification/eventSchema","describe":"/services/data/v58.0/sobjects/SourceChangeNotification/describe","sobject":"/services/data/v58.0/sobjects/SourceChangeNotification"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ST","label":"Stamp","labelPlural":"Stamps","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stamp","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stamp/{ID}","describe":"/services/data/v58.0/sobjects/Stamp/describe","sobject":"/services/data/v58.0/sobjects/Stamp"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1SA","label":"Stamp + Assignment","labelPlural":"Stamp Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StampAssignment","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StampAssignment/{ID}","describe":"/services/data/v58.0/sobjects/StampAssignment/describe","sobject":"/services/data/v58.0/sobjects/StampAssignment"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"081","label":"Static + Resource","labelPlural":"Static Resources","layoutable":false,"mergeable":false,"mruEnabled":true,"name":"StaticResource","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StaticResource/{ID}","describe":"/services/data/v58.0/sobjects/StaticResource/describe","sobject":"/services/data/v58.0/sobjects/StaticResource"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0M6","label":"Streaming + Channel","labelPlural":"Streaming Channels","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"StreamingChannel","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/StreamingChannel/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/StreamingChannel/describe","layouts":"/services/data/v58.0/sobjects/StreamingChannel/describe/layouts","push":"/services/data/v58.0/sobjects/StreamingChannel/{ID}/push","sobject":"/services/data/v58.0/sobjects/StreamingChannel"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"StreamingChannel","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Streaming + Channel Share","labelPlural":"Streaming Channel Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"StreamingChannelShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/StreamingChannelShare/{ID}","describe":"/services/data/v58.0/sobjects/StreamingChannelShare/describe","sobject":"/services/data/v58.0/sobjects/StreamingChannelShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Stripe_Connection__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Stripe_Connection","labelPlural":"Change Event: Stripe_Connection","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__ChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":true,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1V","label":"Stripe_Connection","labelPlural":"Stripe_Connection","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"Stripe_Connection__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Stripe_Connection__c/{ID}","describe":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe","quickActions":"/services/data/v58.0/sobjects/Stripe_Connection__c/quickActions","layouts":"/services/data/v58.0/sobjects/Stripe_Connection__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Stripe_Connection__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sW","label":"Swarm","labelPlural":"Swarms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Swarm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Swarm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Swarm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Swarm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Swarm/describe","quickActions":"/services/data/v58.0/sobjects/Swarm/quickActions","layouts":"/services/data/v58.0/sobjects/Swarm/describe/layouts","sobject":"/services/data/v58.0/sobjects/Swarm"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Feed","labelPlural":"Swarm Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"Swarm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + History","labelPlural":"Swarm History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0sR","label":"Swarm + Member","labelPlural":"Swarm Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"SwarmMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/SwarmMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/SwarmMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/SwarmMember/describe","quickActions":"/services/data/v58.0/sobjects/SwarmMember/quickActions","layouts":"/services/data/v58.0/sobjects/SwarmMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/SwarmMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Feed","labelPlural":"Swarm Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"SwarmMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member History","labelPlural":"Swarm Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"SwarmMember","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Member Share","labelPlural":"Swarm Member Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmMemberShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmMemberShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmMemberShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmMemberShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Swarm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Swarm + Share","labelPlural":"Swarm Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"SwarmShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/SwarmShare/{ID}","describe":"/services/data/v58.0/sobjects/SwarmShare/describe","sobject":"/services/data/v58.0/sobjects/SwarmShare"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Sync_Record__c","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Change + Event: Sync Record","labelPlural":"Change Event: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__ChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__ChangeEvent"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"Sync_Record__c","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Share: + Sync Record","labelPlural":"Share: Sync Record","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Sync_Record__Share","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__Share/{ID}","describe":"/services/data/v58.0/sobjects/Sync_Record__Share/describe","sobject":"/services/data/v58.0/sobjects/Sync_Record__Share"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":true,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"a1W","label":"Sync + Record","labelPlural":"Sync Management","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Sync_Record__c","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Sync_Record__c/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/Sync_Record__c/describe","quickActions":"/services/data/v58.0/sobjects/Sync_Record__c/quickActions","layouts":"/services/data/v58.0/sobjects/Sync_Record__c/describe/layouts","sobject":"/services/data/v58.0/sobjects/Sync_Record__c"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0KD","label":"Tab + Definition","labelPlural":"Tab Definitions","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TabDefinition","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TabDefinition/{ID}","describe":"/services/data/v58.0/sobjects/TabDefinition/describe","sobject":"/services/data/v58.0/sobjects/TabDefinition"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00T","label":"Task","labelPlural":"Tasks","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Task","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Task/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Task/{ID}","describe":"/services/data/v58.0/sobjects/Task/describe","quickActions":"/services/data/v58.0/sobjects/Task/quickActions","layouts":"/services/data/v58.0/sobjects/Task/describe/layouts","sobject":"/services/data/v58.0/sobjects/Task"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Change Event","labelPlural":"Task Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TaskChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TaskChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TaskChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Task","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Feed","labelPlural":"Task Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskFeed/{ID}","describe":"/services/data/v58.0/sobjects/TaskFeed/describe","sobject":"/services/data/v58.0/sobjects/TaskFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Priority Value","labelPlural":"Task Priority Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskPriority","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskPriority/{ID}","describe":"/services/data/v58.0/sobjects/TaskPriority/describe","sobject":"/services/data/v58.0/sobjects/TaskPriority"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Task + Status Value","labelPlural":"Task Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TaskStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TaskStatus/{ID}","describe":"/services/data/v58.0/sobjects/TaskStatus/describe","sobject":"/services/data/v58.0/sobjects/TaskStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UT","label":"Tenant + Usage Entitlement","labelPlural":"Tenant Usage Entitlements","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"TenantUsageEntitlement","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TenantUsageEntitlement/{ID}","describe":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe","layouts":"/services/data/v58.0/sobjects/TenantUsageEntitlement/describe/layouts","sobject":"/services/data/v58.0/sobjects/TenantUsageEntitlement"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hd","label":"Test + Suite Membership","labelPlural":"Test Suite Memberships","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TestSuiteMembership","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TestSuiteMembership/{ID}","describe":"/services/data/v58.0/sobjects/TestSuiteMembership/describe","sobject":"/services/data/v58.0/sobjects/TestSuiteMembership"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jr","label":"Third + Party Account Link","labelPlural":"Third Party Account Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThirdPartyAccountLink","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/{ID}","describe":"/services/data/v58.0/sobjects/ThirdPartyAccountLink/describe","sobject":"/services/data/v58.0/sobjects/ThirdPartyAccountLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hY","label":"Threat + Detection Feedback","labelPlural":"Threat Detection Feedback","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"ThreatDetectionFeedback","queryable":true,"replicateable":true,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe","quickActions":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/quickActions","layouts":"/services/data/v58.0/sobjects/ThreatDetectionFeedback/describe/layouts","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedback"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"ThreatDetectionFeedback","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Threat + Detection Feedback Feed","labelPlural":"Threat Detection Feedback Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"ThreatDetectionFeedbackFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/{ID}","describe":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed/describe","sobject":"/services/data/v58.0/sobjects/ThreatDetectionFeedbackFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1ts","label":"Time + Sheet","labelPlural":"Time Sheets","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheet","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheet/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheet/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheet/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheet/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheet/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheet"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Change Event","labelPlural":"Time Sheet Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1te","label":"Time + Sheet Entry","labelPlural":"Time Sheet Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSheetEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TimeSheetEntry/describe","quickActions":"/services/data/v58.0/sobjects/TimeSheetEntry/quickActions","layouts":"/services/data/v58.0/sobjects/TimeSheetEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSheetEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Change Event","labelPlural":"Time Sheet Entry Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry Feed","labelPlural":"Time Sheet Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheetEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Entry History","labelPlural":"Time Sheet Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Feed","labelPlural":"Time Sheet Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetFeed/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetFeed/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"TimeSheet","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet History","labelPlural":"Time Sheet History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetHistory/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetHistory/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TimeSheet","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Sheet Share","labelPlural":"Time Sheet Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSheetShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSheetShare/{ID}","describe":"/services/data/v58.0/sobjects/TimeSheetShare/describe","sobject":"/services/data/v58.0/sobjects/TimeSheetShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gj","label":"Time + Slot","labelPlural":"Time Slots","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TimeSlot","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TimeSlot/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TimeSlot/{ID}","describe":"/services/data/v58.0/sobjects/TimeSlot/describe","layouts":"/services/data/v58.0/sobjects/TimeSlot/describe/layouts","sobject":"/services/data/v58.0/sobjects/TimeSlot"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"TimeSlot","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Time + Slot Change Event","labelPlural":"Time Slot Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TimeSlotChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/TimeSlotChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/TimeSlotChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Jz","label":"Goal","labelPlural":"Goals","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoal","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoal/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoal/describe","sobject":"/services/data/v58.0/sobjects/TodayGoal"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TodayGoal","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Goal + Share","labelPlural":"Goal Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TodayGoalShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TodayGoalShare/{ID}","describe":"/services/data/v58.0/sobjects/TodayGoalShare/describe","sobject":"/services/data/v58.0/sobjects/TodayGoalShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0TO","label":"Topic","labelPlural":"Topics","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"Topic","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/Topic/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/Topic/{ID}","describe":"/services/data/v58.0/sobjects/Topic/describe","layouts":"/services/data/v58.0/sobjects/Topic/describe/layouts","sobject":"/services/data/v58.0/sobjects/Topic"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0FT","label":"Topic + Assignment","labelPlural":"Topic Assignments","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicAssignment","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicAssignment/{ID}","describe":"/services/data/v58.0/sobjects/TopicAssignment/describe","sobject":"/services/data/v58.0/sobjects/TopicAssignment"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"Topic","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Topic + Feed","labelPlural":"Topic Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicFeed/{ID}","describe":"/services/data/v58.0/sobjects/TopicFeed/describe","sobject":"/services/data/v58.0/sobjects/TopicFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0te","label":"Topic + User Event","labelPlural":"Topic User Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TopicUserEvent","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TopicUserEvent/{ID}","describe":"/services/data/v58.0/sobjects/TopicUserEvent/describe","sobject":"/services/data/v58.0/sobjects/TopicUserEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0NI","label":"Transaction + Security Policy","labelPlural":"Transaction Security Policies","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TransactionSecurityPolicy","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/{ID}","describe":"/services/data/v58.0/sobjects/TransactionSecurityPolicy/describe","sobject":"/services/data/v58.0/sobjects/TransactionSecurityPolicy"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"01h","label":"Language + Translation","labelPlural":"Language Translation","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Translation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Translation/{ID}","describe":"/services/data/v58.0/sobjects/Translation/describe","sobject":"/services/data/v58.0/sobjects/Translation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"5pL","label":"Travel + Mode","labelPlural":"Travel Modes","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"TravelMode","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/TravelMode/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/TravelMode/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/TravelMode/describe","quickActions":"/services/data/v58.0/sobjects/TravelMode/quickActions","layouts":"/services/data/v58.0/sobjects/TravelMode/describe/layouts","sobject":"/services/data/v58.0/sobjects/TravelMode"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"TravelMode","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Feed","labelPlural":"Travel Mode Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeFeed/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeFeed/describe","sobject":"/services/data/v58.0/sobjects/TravelModeFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"TravelMode","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Travel + Mode Share","labelPlural":"Travel Mode Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"TravelModeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/TravelModeShare/{ID}","describe":"/services/data/v58.0/sobjects/TravelModeShare/describe","sobject":"/services/data/v58.0/sobjects/TravelModeShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Gp","label":"Ui + Formula Criterion","labelPlural":"Ui Formula Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaCriterion/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"09t","label":"Ui + Formula Rule","labelPlural":"Ui Formula Rules","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UiFormulaRule","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UiFormulaRule/{ID}","describe":"/services/data/v58.0/sobjects/UiFormulaRule/describe","sobject":"/services/data/v58.0/sobjects/UiFormulaRule"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Undecided + Event Relation","labelPlural":"Undecided Event Relations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UndecidedEventRelation","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UndecidedEventRelation/{ID}","describe":"/services/data/v58.0/sobjects/UndecidedEventRelation/describe","sobject":"/services/data/v58.0/sobjects/UndecidedEventRelation"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hE","label":"Unit + of Measure","labelPlural":"Units of Measure","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UnitOfMeasure","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasure/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UnitOfMeasure/describe","layouts":"/services/data/v58.0/sobjects/UnitOfMeasure/describe/layouts","sobject":"/services/data/v58.0/sobjects/UnitOfMeasure"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UnitOfMeasure","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Unit + of Measure Share","labelPlural":"Unit of Measure Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UnitOfMeasureShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UnitOfMeasureShare/{ID}","describe":"/services/data/v58.0/sobjects/UnitOfMeasureShare/describe","sobject":"/services/data/v58.0/sobjects/UnitOfMeasureShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Uw","label":"URI + Event","labelPlural":"URI Events","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEvent","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEvent/{ID}","describe":"/services/data/v58.0/sobjects/UriEvent/describe","sobject":"/services/data/v58.0/sobjects/UriEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ux","label":"URI + Event Stream ","labelPlural":"URI Event Streams","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UriEventStream","queryable":false,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UriEventStream/{ID}","eventSchema":"/services/data/v58.0/sobjects/UriEventStream/eventSchema","describe":"/services/data/v58.0/sobjects/UriEventStream/describe","sobject":"/services/data/v58.0/sobjects/UriEventStream"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"005","label":"User","labelPlural":"Users","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"User","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/User/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/User/{ID}","namedLayouts":"/services/data/v58.0/sobjects/User/describe/namedLayouts/{LayoutName}","passwordUtilities":"/services/data/v58.0/sobjects/User/{ID}/password","describe":"/services/data/v58.0/sobjects/User/describe","quickActions":"/services/data/v58.0/sobjects/User/quickActions","layouts":"/services/data/v58.0/sobjects/User/describe/layouts","sobject":"/services/data/v58.0/sobjects/User"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ds","label":"Last + Used App","labelPlural":"Last Used App","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppInfo","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppInfo/{ID}","describe":"/services/data/v58.0/sobjects/UserAppInfo/describe","sobject":"/services/data/v58.0/sobjects/UserAppInfo"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Nw","label":"UserAppMenuCustomization","labelPlural":"UserAppMenuCustomizations","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomization","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomization/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomization/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomization"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserAppMenuCustomization","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"UserAppMenuCustomization + Share","labelPlural":"UserAppMenuCustomization Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserAppMenuCustomizationShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare/describe","sobject":"/services/data/v58.0/sobjects/UserAppMenuCustomizationShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07p","label":"Application","labelPlural":"Applications","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"UserAppMenuItem","queryable":true,"replicateable":false,"retrieveable":false,"searchable":true,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserAppMenuItem/{ID}","describe":"/services/data/v58.0/sobjects/UserAppMenuItem/describe","layouts":"/services/data/v58.0/sobjects/UserAppMenuItem/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserAppMenuItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Change Event","labelPlural":"User Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/UserChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/UserChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/UserChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0UV","label":"User + Email Preferred Person","labelPlural":"User Email Preferred People","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPerson","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPerson/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPerson"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserEmailPreferredPerson","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Email Preferred Person Share","labelPlural":"User Email Preferred Person Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEmailPreferredPersonShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/{ID}","describe":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare/describe","sobject":"/services/data/v58.0/sobjects/UserEmailPreferredPersonShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"07u","label":"User + Entity Access","labelPlural":"User Entity Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserEntityAccess"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"User","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Feed","labelPlural":"User Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFeed/{ID}","describe":"/services/data/v58.0/sobjects/UserFeed/describe","sobject":"/services/data/v58.0/sobjects/UserFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4fp","label":"User + Field Access","labelPlural":"User Field Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserFieldAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserFieldAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserFieldAccess/describe","sobject":"/services/data/v58.0/sobjects/UserFieldAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"100","label":"User + License","labelPlural":"User Licenses","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserLicense/describe","sobject":"/services/data/v58.0/sobjects/UserLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Na","label":"User + List View","labelPlural":"User List View","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListView","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListView/{ID}","describe":"/services/data/v58.0/sobjects/UserListView/describe","sobject":"/services/data/v58.0/sobjects/UserListView"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0JU","label":"User + List View Criteria","labelPlural":"User List View Criteria","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserListViewCriterion","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserListViewCriterion/{ID}","describe":"/services/data/v58.0/sobjects/UserListViewCriterion/describe","sobject":"/services/data/v58.0/sobjects/UserListViewCriterion"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Yw","label":"User + Login","labelPlural":"User Login","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserLogin","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserLogin/{ID}","describe":"/services/data/v58.0/sobjects/UserLogin/describe","sobject":"/services/data/v58.0/sobjects/UserLogin"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"051","label":"User + Package License","labelPlural":"User Package License","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPackageLicense","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPackageLicense/{ID}","describe":"/services/data/v58.0/sobjects/UserPackageLicense/describe","sobject":"/services/data/v58.0/sobjects/UserPackageLicense"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0up","label":"User + Permission Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPermissionAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPermissionAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserPermissionAccess/describe","sobject":"/services/data/v58.0/sobjects/UserPermissionAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"03u","label":"User + Preference","labelPlural":"User Preferences","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserPreference","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserPreference/{ID}","describe":"/services/data/v58.0/sobjects/UserPreference/describe","sobject":"/services/data/v58.0/sobjects/UserPreference"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Ni","label":"User + Provisioning Account","labelPlural":"User Provisioning Accounts","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccount","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccount/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccount/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccount"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HY","label":"User + Provisioning Account Staging","labelPlural":"User Provisioning Account Stagings","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvAccountStaging","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvAccountStaging/{ID}","describe":"/services/data/v58.0/sobjects/UserProvAccountStaging/describe","sobject":"/services/data/v58.0/sobjects/UserProvAccountStaging"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HX","label":"User + Provisioning Mock Target","labelPlural":"User Provisioning Mock Targets","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvMockTarget","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvMockTarget/{ID}","describe":"/services/data/v58.0/sobjects/UserProvMockTarget/describe","sobject":"/services/data/v58.0/sobjects/UserProvMockTarget"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Je","label":"User + Provisioning Config","labelPlural":"User Provisioning Configs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningConfig","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningConfig/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningConfig/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningConfig"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Hs","label":"User + Provisioning Log","labelPlural":"User Provisioning Logs","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningLog","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningLog/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningLog/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningLog"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0HP","label":"User + Provisioning Request","labelPlural":"User Provisioning Requests","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequest","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequest/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe","layouts":"/services/data/v58.0/sobjects/UserProvisioningRequest/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequest"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"UserProvisioningRequest","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Provisioning Request Share","labelPlural":"User Provisioning Request Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserProvisioningRequestShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/{ID}","describe":"/services/data/v58.0/sobjects/UserProvisioningRequestShare/describe","sobject":"/services/data/v58.0/sobjects/UserProvisioningRequestShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"User + Record Access","labelPlural":"User Record Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserRecordAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserRecordAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserRecordAccess/describe","sobject":"/services/data/v58.0/sobjects/UserRecordAccess"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00E","label":"Role","labelPlural":"Role","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"UserRole","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/UserRole/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/UserRole/{ID}","describe":"/services/data/v58.0/sobjects/UserRole/describe","layouts":"/services/data/v58.0/sobjects/UserRole/describe/layouts","sobject":"/services/data/v58.0/sobjects/UserRole"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0g2","label":"User + Setup Entity Access","labelPlural":"User Permission Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserSetupEntityAccess","queryable":true,"replicateable":false,"retrieveable":false,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserSetupEntityAccess/{ID}","describe":"/services/data/v58.0/sobjects/UserSetupEntityAccess/describe","sobject":"/services/data/v58.0/sobjects/UserSetupEntityAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"User","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0N2","label":"User + Share","labelPlural":"User Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"UserShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/UserShare/{ID}","describe":"/services/data/v58.0/sobjects/UserShare/describe","sobject":"/services/data/v58.0/sobjects/UserShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Qt","label":"Identity + Verification History","labelPlural":"Identity Verification History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VerificationHistory","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VerificationHistory/{ID}","describe":"/services/data/v58.0/sobjects/VerificationHistory/describe","sobject":"/services/data/v58.0/sobjects/VerificationHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0OP","label":"Visualforce + Access Metric","labelPlural":"Visualforce Access Metrics","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"VisualforceAccessMetrics","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/{ID}","describe":"/services/data/v58.0/sobjects/VisualforceAccessMetrics/describe","sobject":"/services/data/v58.0/sobjects/VisualforceAccessMetrics"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"083","label":"Vote","labelPlural":"Votes","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"Vote","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/Vote/{ID}","describe":"/services/data/v58.0/sobjects/Vote/describe","sobject":"/services/data/v58.0/sobjects/Vote"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4V3","label":"Warranty + Term","labelPlural":"Warranty Terms","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WarrantyTerm","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WarrantyTerm/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WarrantyTerm/describe","quickActions":"/services/data/v58.0/sobjects/WarrantyTerm/quickActions","layouts":"/services/data/v58.0/sobjects/WarrantyTerm/describe/layouts","sobject":"/services/data/v58.0/sobjects/WarrantyTerm"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Change Event","labelPlural":"Warranty Term Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Feed","labelPlural":"Warranty Term Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermFeed/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermFeed/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WarrantyTerm","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term History","labelPlural":"Warranty Term History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermHistory/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermHistory/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WarrantyTerm","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Warranty + Term Share","labelPlural":"Warranty Term Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WarrantyTermShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WarrantyTermShare/{ID}","describe":"/services/data/v58.0/sobjects/WarrantyTermShare/describe","sobject":"/services/data/v58.0/sobjects/WarrantyTermShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"00b","label":"Custom + Button or Link","labelPlural":"Custom Buttons or Links","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WebLink","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WebLink/{ID}","describe":"/services/data/v58.0/sobjects/WebLink/describe","sobject":"/services/data/v58.0/sobjects/WebLink"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W5","label":"Access","labelPlural":"Access","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccess","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccess/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccess/describe","sobject":"/services/data/v58.0/sobjects/WorkAccess"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkAccess","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Access + Share","labelPlural":"Access Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkAccessShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkAccessShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkAccessShare/describe","sobject":"/services/data/v58.0/sobjects/WorkAccessShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W2","label":"Badge + Received","labelPlural":"Badges Received","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadge","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadge/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadge/describe","layouts":"/services/data/v58.0/sobjects/WorkBadge/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadge"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W1","label":"Badge","labelPlural":"Badges","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkBadgeDefinition","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinition/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe","quickActions":"/services/data/v58.0/sobjects/WorkBadgeDefinition/quickActions","layouts":"/services/data/v58.0/sobjects/WorkBadgeDefinition/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinition"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Feed","labelPlural":"Badge Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkBadgeDefinition","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + History","labelPlural":"Badge History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkBadgeDefinition","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Badge + Share","labelPlural":"Badge Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkBadgeDefinitionShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare/describe","sobject":"/services/data/v58.0/sobjects/WorkBadgeDefinitionShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"3kq","label":"Work + Capacity Availability","labelPlural":"Work Capacity Availabilities","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityAvailability","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailability/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityAvailability/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailability"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityAvailability","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","labelPlural":"__MISSING + LABEL__ PropertyFile - val WorkCapacityAvailability not found in section StandardFeedLabel","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityAvailability","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Availability Share","labelPlural":"Work Capacity Availability Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityAvailabilityShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityAvailabilityShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VQ","label":"Work + Capacity Limit","labelPlural":"Work Capacity Limits","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityLimit","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimit/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityLimit/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimit"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkCapacityLimit","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Feed","labelPlural":"Work Capacity Limit Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityLimit","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Limit Share","labelPlural":"Work Capacity Limit Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityLimitShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityLimitShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityLimitShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VP","label":"Work + Capacity Usage","labelPlural":"Work Capacity Usages","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkCapacityUsage","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsage/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe","layouts":"/services/data/v58.0/sobjects/WorkCapacityUsage/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsage"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkCapacityUsage","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Feed","labelPlural":"Work Capacity Usage Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageFeed"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkCapacityUsage","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Capacity Usage Share","labelPlural":"Work Capacity Usage Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkCapacityUsageShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkCapacityUsageShare/describe","sobject":"/services/data/v58.0/sobjects/WorkCapacityUsageShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0WO","label":"Work + Order","labelPlural":"Work Orders","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrder","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrder/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrder/describe/approvalLayouts","workOrderRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/{ID}/suggestedArticles","workOrderArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrder/suggestedArticles","listviews":"/services/data/v58.0/sobjects/WorkOrder/listviews","describe":"/services/data/v58.0/sobjects/WorkOrder/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrder/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrder/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkOrder"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Change Event","labelPlural":"Work Order Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Feed","labelPlural":"Work Order Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrder","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order History","labelPlural":"Work Order History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":true,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"1WL","label":"Work + Order Line Item","labelPlural":"Work Order Line Items","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkOrderLineItem","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/approvalLayouts","workOrderLineItemRowArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/{ID}/suggestedArticles","describe":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe","quickActions":"/services/data/v58.0/sobjects/WorkOrderLineItem/quickActions","layouts":"/services/data/v58.0/sobjects/WorkOrderLineItem/describe/layouts","workOrderLineItemArticleSuggestions":"/services/data/v58.0/sobjects/WorkOrderLineItem/suggestedArticles","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItem"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Change Event","labelPlural":"Work Order Line Item Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Feed","labelPlural":"Work Order Line Item Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkOrderLineItem","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item History","labelPlural":"Work Order Line Item History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Line Item Status Value","labelPlural":"Work Order Line Item Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderLineItemStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderLineItemStatus"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkOrder","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Share","labelPlural":"Work Order Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderShare/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Order Status Value","labelPlural":"Work Order Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkOrderStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkOrderStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkOrderStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkOrderStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gq","label":"Work + Plan","labelPlural":"Work Plans","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlan","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlan/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlan/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlan/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlan/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlan/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlan"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Change Event","labelPlural":"Work Plan Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Feed","labelPlural":"Work Plan Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlan","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan History","labelPlural":"Work Plan History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0gr","label":"Work + Plan Selection Rule","labelPlural":"Work Plan Selection Rules","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanSelectionRule","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanSelectionRule/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRule"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Change Event","labelPlural":"Work Plan Selection Rule + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Feed","labelPlural":"Work Plan Selection Rule Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanSelectionRule","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule History","labelPlural":"Work Plan Selection Rule History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanSelectionRule","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Selection Rule Share","labelPlural":"Work Plan Selection Rule Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanSelectionRuleShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanSelectionRuleShare"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlan","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Share","labelPlural":"Work Plan Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":true,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"7Iy","label":"Work + Plan Template","labelPlural":"Work Plan Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Change Event","labelPlural":"Work Plan Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateChangeEvent"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"8xu","label":"Work + Plan Template Entry","labelPlural":"Work Plan Template Entries","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkPlanTemplateEntry","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe","quickActions":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/quickActions","layouts":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntry"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Change Event","labelPlural":"Work Plan Template Entry + Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry Feed","labelPlural":"Work Plan Template Entry Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplateEntry","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Entry History","labelPlural":"Work Plan Template Entry History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateEntryHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateEntryHistory"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Feed","labelPlural":"Work Plan Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkPlanTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template History","labelPlural":"Work Plan Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkPlanTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Plan Template Share","labelPlural":"Work Plan Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkPlanTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkPlanTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkPlanTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0hF","label":"Work + Step","labelPlural":"Work Steps","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStep","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStep/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStep/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStep/describe","quickActions":"/services/data/v58.0/sobjects/WorkStep/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStep/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStep"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Change Event","labelPlural":"Work Step Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Feed","labelPlural":"Work Step Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStep","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step History","labelPlural":"Work Step History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Status Value","labelPlural":"Work Step Status Value","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepStatus","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepStatus/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepStatus/describe","sobject":"/services/data/v58.0/sobjects/WorkStepStatus"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"4L0","label":"Work + Step Template","labelPlural":"Work Step Templates","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkStepTemplate","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplate/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkStepTemplate/describe","quickActions":"/services/data/v58.0/sobjects/WorkStepTemplate/quickActions","layouts":"/services/data/v58.0/sobjects/WorkStepTemplate/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkStepTemplate"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Change Event","labelPlural":"Work Step Template Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Feed","labelPlural":"Work Step Template Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkStepTemplate","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template History","labelPlural":"Work Step Template History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkStepTemplate","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Step Template Share","labelPlural":"Work Step Template Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkStepTemplateShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkStepTemplateShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkStepTemplateShare/describe","sobject":"/services/data/v58.0/sobjects/WorkStepTemplateShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0W0","label":"Thanks","labelPlural":"Thanks","layoutable":true,"mergeable":false,"mruEnabled":false,"name":"WorkThanks","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanks/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanks/describe","layouts":"/services/data/v58.0/sobjects/WorkThanks/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkThanks"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkThanks","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Thanks + Share","labelPlural":"Thanks Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkThanksShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkThanksShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkThanksShare/describe","sobject":"/services/data/v58.0/sobjects/WorkThanksShare"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"08q","label":"Work + Type","labelPlural":"Work Types","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkType","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkType/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkType/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkType/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkType/describe","quickActions":"/services/data/v58.0/sobjects/WorkType/quickActions","layouts":"/services/data/v58.0/sobjects/WorkType/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkType"}},{"activateable":false,"associateEntityType":"ChangeEvent","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Change Event","labelPlural":"Work Type Change Event","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeChangeEvent","queryable":false,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":true,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/{ID}","eventSchema":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/eventSchema","describe":"/services/data/v58.0/sobjects/WorkTypeChangeEvent/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeChangeEvent"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Feed","labelPlural":"Work Type Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeFeed"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0VS","label":"Work + Type Group","labelPlural":"Work Type Groups","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroup","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":true,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroup/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroup/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroup/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroup/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroup"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Feed","labelPlural":"Work Type Group Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroup","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group History","labelPlural":"Work Type Group History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupHistory"}},{"activateable":false,"associateEntityType":null,"associateParentEntity":null,"createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":"0Wz","label":"Work + Type Group Member","labelPlural":"Work Type Group Members","layoutable":true,"mergeable":false,"mruEnabled":true,"name":"WorkTypeGroupMember","queryable":true,"replicateable":true,"retrieveable":true,"searchable":true,"triggerable":false,"undeletable":true,"updateable":true,"urls":{"compactLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/compactLayouts","rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMember/{ID}","approvalLayouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/approvalLayouts","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe","quickActions":"/services/data/v58.0/sobjects/WorkTypeGroupMember/quickActions","layouts":"/services/data/v58.0/sobjects/WorkTypeGroupMember/describe/layouts","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMember"}},{"activateable":false,"associateEntityType":"Feed","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member Feed","labelPlural":"Work Type Group Member Feed","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberFeed","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberFeed"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkTypeGroupMember","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Member History","labelPlural":"Work Type Group Member History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupMemberHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupMemberHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkTypeGroup","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Group Share","labelPlural":"Work Type Group Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeGroupShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeGroupShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeGroupShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeGroupShare"}},{"activateable":false,"associateEntityType":"History","associateParentEntity":"WorkType","createable":false,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":false,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type History","labelPlural":"Work Type History","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeHistory","queryable":true,"replicateable":true,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":false,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeHistory/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeHistory/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeHistory"}},{"activateable":false,"associateEntityType":"Share","associateParentEntity":"WorkType","createable":true,"custom":false,"customSetting":false,"deepCloneable":false,"deletable":true,"deprecatedAndHidden":false,"feedEnabled":false,"hasSubtypes":false,"isInterface":false,"isSubtype":false,"keyPrefix":null,"label":"Work + Type Share","labelPlural":"Work Type Share","layoutable":false,"mergeable":false,"mruEnabled":false,"name":"WorkTypeShare","queryable":true,"replicateable":false,"retrieveable":true,"searchable":false,"triggerable":false,"undeletable":false,"updateable":true,"urls":{"rowTemplate":"/services/data/v58.0/sobjects/WorkTypeShare/{ID}","describe":"/services/data/v58.0/sobjects/WorkTypeShare/describe","sobject":"/services/data/v58.0/sobjects/WorkTypeShare"}}]}' + recorded_at: Thu, 09 Nov 2023 19:17:52 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Order_Stripe_Coupon__c%20where%20Order__c%20=%20%278016s000001FXxfAAG%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:52 GMT + Set-Cookie: + - BrowserId=rfDL0X80Ee6rEPN14lHr0g; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=17/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA"},"Id":"a1N6s00000113hbEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:52 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=Select%20Id%20from%20Quote_Stripe_Coupon_Association__c%20where%20Quote__c%20=%20%27a0z6s0000016DllAAE%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:52 GMT + Set-Cookie: + - BrowserId=rf9KD380Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:52 + GMT; Max-Age=31536000 + Strict-Transport-Security: + - max-age=63072000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Xss-Protection: + - 1; mode=block + X-Robots-Tag: + - none + Cache-Control: + - no-cache,must-revalidate,max-age=0,no-store,private + Sforce-Limit-Info: + - api-usage=21/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":"Quote_Stripe_Coupon_Association__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon_Association__c/a1Q6s000001FKMtEAO"},"Id":"a1Q6s000001FKMtEAO"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:52 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:53 GMT + Set-Cookie: + - BrowserId=rgxpu380Ee64lovoOSu8gQ; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=17/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:45 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA"},"Id":"a1N6s00000113hbEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0002","CreatedDate":"2023-11-09T19:17:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:45.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:45.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXxfAAG","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHPEAY","Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:17:52 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHPEAY + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:53 GMT + Set-Cookie: + - BrowserId=rhmJpn80Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=18/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:35 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Quote_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHPEAY"},"Id":"a1R6s000000uvHPEAY","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0003","CreatedDate":"2023-11-09T19:17:35.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:35.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:35.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Percent_Off__c":null,"Stripe_ID__c":null,"Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/"}' + recorded_at: Thu, 09 Nov 2023 19:17:53 GMT +- request: + method: post + uri: https://api.stripe.com/v1/coupons + body: + encoding: UTF-8 + string: name=%2410+off+coupon&amount_off=1000&duration=once&metadata[salesforce_order_stripe_coupon_id]=a1N6s00000113hbEAA&metadata[salesforce_order_stripe_coupon_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2Fa1N6s00000113hbEAA¤cy=usd + headers: + User-Agent: + - Stripe/v1 RubyBindings/7.1.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_wdV0ir7rUZvGDO","request_duration_ms":244}}' + Idempotency-Key: + - 294c2dfc-d3cb-4e7d-ac5b-c89174e0bb38 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:53 GMT + Content-Type: + - application/json + Content-Length: + - '532' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcoupons; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 294c2dfc-d3cb-4e7d-ac5b-c89174e0bb38 + Original-Request: + - req_TZ2SyQYhDY2d1a + Request-Id: + - req_TZ2SyQYhDY2d1a + 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": "3PQdshKx", + "object": "coupon", + "amount_off": 1000, + "created": 1699557473, + "currency": "usd", + "duration": "once", + "duration_in_months": null, + "livemode": false, + "max_redemptions": null, + "metadata": { + "salesforce_order_stripe_coupon_id": "a1N6s00000113hbEAA", + "salesforce_order_stripe_coupon_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/a1N6s00000113hbEAA" + }, + "name": "$10 off coupon", + "percent_off": null, + "redeem_by": null, + "times_redeemed": 0, + "valid": true + } + recorded_at: Thu, 09 Nov 2023 19:17:53 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"3PQdshKx"}' + 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: + - Thu, 09 Nov 2023 19:17:53 GMT + Set-Cookie: + - BrowserId=rk0cUX80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:53 + 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=19/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:53 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Quote_Stripe_Coupon__c/a1R6s000000uvHPEAY + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"3PQdshKx"}' + 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: + - Thu, 09 Nov 2023 19:17:53 GMT + Set-Cookie: + - BrowserId=rmGOVH80Ee6HR6GleNCiyw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:53 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:53 + 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=15/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:53 GMT +- request: + method: get + uri: https://api.stripe.com/v1/customers/cus_OyavUWSqlfYiM4?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_JDngIwlGFKNuox","request_duration_ms":259}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:53 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, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fcustomers%2F%3Acustomer; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Request-Id: + - req_duhAU2ZvuWkBA9 + 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_OyavUWSqlfYiM4", + "object": "customer", + "address": null, + "balance": 0, + "created": 1699557468, + "currency": null, + "default_currency": null, + "default_source": null, + "delinquent": false, + "description": null, + "discount": null, + "email": null, + "invoice_prefix": "C3543376", + "invoice_settings": { + "custom_fields": null, + "default_payment_method": null, + "footer": null, + "rendering_options": null + }, + "livemode": false, + "metadata": { + "salesforce_account_id": "0016s00000fzBeYAAU", + "salesforce_account_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/0016s00000fzBeYAAU" + }, + "name": "REST Account 2023-11-09 00:00:00 UTC", + "next_invoice_sequence": 1, + "phone": null, + "preferred_locales": [], + "shipping": null, + "tax_exempt": "none", + "test_clock": null + } + recorded_at: Thu, 09 Nov 2023 19:17:53 GMT +- request: + method: get + uri: https://api.stripe.com/v1/prices/price_1OAdjeIsgf92XbAOXflagUzZ + 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_duhAU2ZvuWkBA9","request_duration_ms":214}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:54 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, Stripe-Should-Retry, 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 https://q.stripe.com/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' + Request-Id: + - req_zTi1WeFiT396wd + 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_1OAdjeIsgf92XbAOXflagUzZ", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557470, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyQmAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQmAAK" + }, + "nickname": null, + "product": "prod_OyavSIcaG6RSyK", + "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: Thu, 09 Nov 2023 19:17:53 GMT +- request: + method: post + uri: https://api.stripe.com/v1/subscription_schedules + body: + encoding: UTF-8 + string: end_behavior=cancel&metadata[salesforce_order_id]=8016s000001FXxfAAG&metadata[salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxfAAG&start_date=1699488000&customer=cus_OyavUWSqlfYiM4&phases[0][items][0][price]=price_1OAdjeIsgf92XbAOXflagUzZ&phases[0][items][0][metadata][salesforce_order_item_id]=8026s0000014Mv4AAE&phases[0][items][0][metadata][salesforce_order_item_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8026s0000014Mv4AAE&phases[0][items][0][discounts][0][coupon]=XNuXMR2Q&phases[0][items][0][quantity]=1&phases[0][end_date]=1731110400&phases[0][metadata][salesforce_order_id]=8016s000001FXxfAAG&phases[0][metadata][salesforce_order_link]=https%3A%2F%2Fconnect-saas-89822-dev-ed.scratch.my.salesforce.com%2F8016s000001FXxfAAG&phases[0][discounts][0][coupon]=3PQdshKx + 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_TZ2SyQYhDY2d1a","request_duration_ms":242}}' + Idempotency-Key: + - 5fd11a14-e1bd-429c-95cd-3453458e7018 + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:54 GMT + Content-Type: + - application/json + Content-Length: + - '2650' + 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, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Idempotency-Key: + - 5fd11a14-e1bd-429c-95cd-3453458e7018 + Original-Request: + - req_6yVS5sQIIOVK4k + Request-Id: + - req_6yVS5sQIIOVK4k + 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_1OAdjiIsgf92XbAONMlLsooR", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1699557474, + "current_phase": { + "end_date": 1731110400, + "start_date": 1699488000 + }, + "customer": "cus_OyavUWSqlfYiM4", + "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": "8016s000001FXxfAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxfAAG" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "3PQdshKx", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "3PQdshKx", + "discount": null + } + ], + "end_date": 1731110400, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [ + { + "coupon": "XNuXMR2Q", + "discount": null + } + ], + "metadata": { + "salesforce_order_item_id": "8026s0000014Mv4AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mv4AAE" + }, + "plan": "price_1OAdjeIsgf92XbAOXflagUzZ", + "price": "price_1OAdjeIsgf92XbAOXflagUzZ", + "quantity": 1, + "tax_rates": [] + } + ], + "metadata": { + "salesforce_order_id": "8016s000001FXxfAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxfAAG" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1699488000, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1OAdjiIsgf92XbAO9Yph8o26", + "test_clock": null + } + recorded_at: Thu, 09 Nov 2023 19:17:54 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order/8016s000001FXxfAAG + body: + encoding: UTF-8 + string: '{"Stripe_ID__c":"sub_sched_1OAdjiIsgf92XbAONMlLsooR"}' + 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: + - Thu, 09 Nov 2023 19:17:54 GMT + Set-Cookie: + - BrowserId=rysgAX80Ee6s3k-n6wD6XA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:54 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:54 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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=17/5000000 + body: + encoding: UTF-8 + string: '' + recorded_at: Thu, 09 Nov 2023 19:17:55 GMT +- request: + method: patch + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Sync_Record__c/Compound_ID__c/8016s000001FXxfAAG-8016s000001FXxfAAG + body: + encoding: UTF-8 + string: '{"Primary_Record_ID__c":"8016s000001FXxfAAG","Primary_Object_Type__c":"Order","Secondary_Record_ID__c":"8016s000001FXxfAAG","Secondary_Object_Type__c":"Order","Resolution_Message__c":"Created + Stripe Subscription Schedule with Id: sub_sched_1OAdjiIsgf92XbAONMlLsooR","Resolution_Status__c":"Success","Resolution_Documentation_Link__c":"https://stripe.com/docs/connectors/salesforce-cpq/overview","Stripe_Request_Dashboard_Link__c":"https://dashboard.stripe.com/test/logs/req_6yVS5sQIIOVK4k"}' + 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: + - Thu, 09 Nov 2023 19:17:55 GMT + Set-Cookie: + - BrowserId=r1sxDn80Ee6ALufBknL8GA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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 + Sforce-Limit-Info: + - api-usage=20/5000000 + Location: + - "/services/data/v58.0/sobjects/Sync_Record__c/a1W6s000000KxcXEAS" + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"id":"a1W6s000000KxcXEAS","success":true,"errors":[],"created":true}' + recorded_at: Thu, 09 Nov 2023 19:17:55 GMT +- request: + method: get + uri: https://api.stripe.com/v1/subscription_schedules/sub_sched_1OAdjiIsgf92XbAONMlLsooR?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_zTi1WeFiT396wd","request_duration_ms":205}}' + Stripe-Version: + - '2020-08-27' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"7.1.0","lang":"ruby","lang_version":"2.7.6 p219 (2022-04-12)","platform":"arm64-darwin21","engine":"ruby","publisher":"stripe","uname":"Darwin + st-nadaismail1 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:41:43 PDT + 2023; root:xnu-10002.1.13~1/RELEASE_ARM64_T6000 arm64","hostname":"st-nadaismail1"}' + Stripe-Account: + - STRIPE_MERCHANT_ID + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Thu, 09 Nov 2023 19:17:55 GMT + Content-Type: + - application/json + Content-Length: + - '3725' + 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, Stripe-Should-Retry, 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 https://q.stripe.com/csp-report?p=v1%2Fsubscription_schedules%2F%3Aschedule; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Request-Id: + - req_6JrCUxWYVLKiCh + 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_1OAdjiIsgf92XbAONMlLsooR", + "object": "subscription_schedule", + "application": "ca_KHoLJGritkQy9Bisc1D5O5YglqfWs5bi", + "canceled_at": null, + "completed_at": null, + "created": 1699557474, + "current_phase": { + "end_date": 1731110400, + "start_date": 1699488000 + }, + "customer": "cus_OyavUWSqlfYiM4", + "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": "8016s000001FXxfAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxfAAG" + }, + "phases": [ + { + "add_invoice_items": [], + "application_fee_percent": null, + "billing_cycle_anchor": null, + "billing_thresholds": null, + "collection_method": null, + "coupon": "3PQdshKx", + "currency": "usd", + "default_payment_method": null, + "default_tax_rates": [], + "description": null, + "discounts": [ + { + "coupon": "3PQdshKx", + "discount": null + } + ], + "end_date": 1731110400, + "invoice_settings": null, + "items": [ + { + "billing_thresholds": null, + "discounts": [ + { + "coupon": "XNuXMR2Q", + "discount": null + } + ], + "metadata": { + "salesforce_order_item_id": "8026s0000014Mv4AAE", + "salesforce_order_item_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8026s0000014Mv4AAE" + }, + "plan": "price_1OAdjeIsgf92XbAOXflagUzZ", + "price": { + "id": "price_1OAdjeIsgf92XbAOXflagUzZ", + "object": "price", + "active": true, + "billing_scheme": "per_unit", + "created": 1699557470, + "currency": "usd", + "custom_unit_amount": null, + "livemode": false, + "lookup_key": null, + "metadata": { + "salesforce_pricebook_entry_id": "01u6s000006MyQmAAK", + "salesforce_pricebook_entry_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/01u6s000006MyQmAAK" + }, + "nickname": null, + "product": "prod_OyavSIcaG6RSyK", + "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": "8016s000001FXxfAAG", + "salesforce_order_link": "https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/8016s000001FXxfAAG" + }, + "on_behalf_of": null, + "proration_behavior": "create_prorations", + "start_date": 1699488000, + "transfer_data": null, + "trial_end": null + } + ], + "prebilling": null, + "released_at": null, + "released_subscription": null, + "renewal_interval": null, + "status": "active", + "subscription": "sub_1OAdjiIsgf92XbAO9Yph8o26", + "test_clock": null + } + recorded_at: Thu, 09 Nov 2023 19:17:55 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/query?q=SELECT%20Id%20FROM%20Order_Stripe_Coupon__c%20WHERE%20Order__c%20=%20%278016s000001FXxfAAG%27 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:55 GMT + Set-Cookie: + - BrowserId=r8OPU380Ee6KdUuCNUaLyA; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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 + Sforce-Limit-Info: + - api-usage=19/5000000 + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"totalSize":1,"done":true,"records":[{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA"},"Id":"a1N6s00000113hbEAA"}]}' + recorded_at: Thu, 09 Nov 2023 19:17:55 GMT +- request: + method: get + uri: https://connect-saas-89822-dev-ed.scratch.my.salesforce.com/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Faraday v2.4.0 + Authorization: + - OAuth + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Thu, 09 Nov 2023 19:17:55 GMT + Set-Cookie: + - BrowserId=r9DV5380Ee6vWTMKEHWLcw; domain=.salesforce.com; path=/; expires=Fri, + 08-Nov-2024 19:17:55 GMT; Max-Age=31536000 + - CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17:55 GMT; Max-Age=31536000 + - LSKey-c$CookieConsentPolicy=0:1; path=/; expires=Fri, 08-Nov-2024 19:17: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 + Sforce-Limit-Info: + - api-usage=22/5000000 + Last-Modified: + - Thu, 09 Nov 2023 19:17:53 GMT + Content-Type: + - application/json;charset=UTF-8 + Vary: + - Accept-Encoding + Transfer-Encoding: + - chunked + body: + encoding: ASCII-8BIT + string: '{"attributes":{"type":"Order_Stripe_Coupon__c","url":"/services/data/v58.0/sobjects/Order_Stripe_Coupon__c/a1N6s00000113hbEAA"},"Id":"a1N6s00000113hbEAA","OwnerId":"0056s000006SKknAAG","IsDeleted":false,"Name":"0002","CreatedDate":"2023-11-09T19:17:45.000+0000","CreatedById":"0056s000006SKknAAG","LastModifiedDate":"2023-11-09T19:17:53.000+0000","LastModifiedById":"0056s000006SKknAAG","SystemModstamp":"2023-11-09T19:17:53.000+0000","Amount_Off__c":10.0,"Duration_In_Months__c":null,"Duration__c":"once","Max_Redemptions__c":null,"Name__c":"$10 + off coupon","Order_Item__c":null,"Order__c":"8016s000001FXxfAAG","Percent_Off__c":null,"Quote_Stripe_Coupon_Id__c":"a1R6s000000uvHPEAY","Stripe_ID__c":"3PQdshKx","Stripe_Dashboard_Link__c":"https://dashboard.stripe.com/test/id/3PQdshKx"}' + recorded_at: Thu, 09 Nov 2023 19:17:55 GMT +recorded_with: VCR 6.2.0